Skip to content

Commit 5f43f52

Browse files
committed
Double checked history and found one missing file
1 parent 8384685 commit 5f43f52

File tree

1 file changed

+87
-0
lines changed
  • targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H747xI/TARGET_PORTENTA_H7/COMPONENT_WHD/resources/nvram/TARGET_STM32H747xI

1 file changed

+87
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
/*
2+
* Copyright (c) 2019, Cypress Semiconductor Corporation, All Rights Reserved
3+
* SPDX-License-Identifier: LicenseRef-PBL
4+
*
5+
* This file and the related binary are licensed under the
6+
* Permissive Binary License, Version 1.0 (the "License");
7+
* you may not use these files except in compliance with the License.
8+
*
9+
* You may obtain a copy of the License here:
10+
* LICENSE-permissive-binary-license-1.0.txt and at
11+
* https://www.mbed.com/licenses/PBL-1.0
12+
*
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/** @file
18+
* NVRAM file for CY8CKIT-062-WiFi-BT (PSoC6 WiFi-BT Pioneer Kit) using
19+
* Murata's Type 1DX module - Copied from bcm94343wwcd1.txt on 08/04/2019
20+
* # 2.4 GHz, 20 MHz BW mode; No Antenna Diversity
21+
*/
22+
23+
#ifndef INCLUDED_NVRAM_IMAGE_H_
24+
#define INCLUDED_NVRAM_IMAGE_H_
25+
26+
#include <string.h>
27+
#include <stdint.h>
28+
#include "generated_mac_address.txt"
29+
30+
31+
#ifdef __cplusplus
32+
extern "C" {
33+
#endif
34+
35+
/**
36+
* Character array of NVRAM image
37+
*
38+
* Generated from cyw94343cy8ckit-062-wifi-bt.txt
39+
*/
40+
41+
static const char wifi_nvram_image[] =
42+
"manfid=0x2d0" "\x00"
43+
"prodid=0x0726" "\x00"
44+
"vendid=0x14e4" "\x00"
45+
"devid=0x43e2" "\x00"
46+
"boardtype=0x0726" "\x00"
47+
"boardrev=0x1202" "\x00"
48+
"boardnum=22" "\x00"
49+
NVRAM_GENERATED_MAC_ADDRESS "\x00"
50+
"sromrev=11" "\x00"
51+
"boardflags=0x00404201" "\x00"
52+
"boardflags3=0x04000000" "\x00"
53+
"xtalfreq=37400" "\x00"
54+
"nocrc=1" "\x00"
55+
"ag0=0" "\x00"
56+
"aa2g=1" "\x00"
57+
"ccode=ALL" "\x00"
58+
"extpagain2g=0" "\x00"
59+
"pa2ga0=-145,6667,-751" "\x00"
60+
"AvVmid_c0=0x0,0xc8" "\x00"
61+
"cckpwroffset0=2" "\x00"
62+
"maxp2ga0=74" "\x00"
63+
"cckbw202gpo=0" "\x00"
64+
"legofdmbw202gpo=0x88888888" "\x00"
65+
"mcsbw202gpo=0xaaaaaaaa" "\x00"
66+
"propbw202gpo=0xdd" "\x00"
67+
"ofdmdigfilttype=18" "\x00"
68+
"ofdmdigfilttypebe=18" "\x00"
69+
"papdmode=1" "\x00"
70+
"papdvalidtest=1" "\x00"
71+
"pacalidx2g=48" "\x00"
72+
"papdepsoffset=-22" "\x00"
73+
"papdendidx=58" "\x00"
74+
"il0"NVRAM_GENERATED_MAC_ADDRESS "\x00"
75+
"wl0id=0x431b" "\x00"
76+
"muxenab=0x10" "\x00"
77+
"\x00\x00";
78+
79+
#ifdef __cplusplus
80+
} /* extern "C" */
81+
#endif
82+
83+
#else /* ifndef INCLUDED_NVRAM_IMAGE_H_ */
84+
85+
#error Wi-Fi NVRAM image included twice
86+
87+
#endif /* ifndef INCLUDED_NVRAM_IMAGE_H_ */

0 commit comments

Comments
 (0)