1VERSION="01"
2#Conf file consists of contents of TLV Format for Regulation
3##Following TLV formats for country code configuration.
4##octet[0]:Number of countries (N)
5##Country[1]:
6##    octet[1]: Tag Id of Country code(0x00)
7##    octet[2]: Country code Tag Id length
8##    octet[3-4]: Country code value (Example: RU,US,IN etc)
9##    octet[...]: Params supported list in the particular country in the TLV format
10## Note:
11##  Enable UWB:
12##      Tag_Id: 0x01
13##      Length: 0x01
14##      Value: 1 - enable
15##             0 - disable
16##  Channel 5 supported:
17##      Tag_Id: 0x02
18##      Length: 0x01
19##      Value: 1 - enable
20##             0 - disable
21##  Channel 9 supported:
22##      Tag_Id: 0x03
23##      Length: 0x01
24##      Value: 1 - enable
25##             0 - disable
26##  TX power:
27##      Tag_Id: 0x05
28##      Length: 0x02
29##      Value:
30##          octect[0-1] - RMS TX power
31##Again another country code config list follows after tag Id 0 found, remaining byte
32##position is same as described above
33
34UWB_COUNTRY_CODE_CAPS={08,
35    00, 02, 52, 55,
36    03, 01, 00,
37    05, 02, 81, 05,
38    00, 02, 55, 41,
39    01, 01, 00,
40    00, 02, 4b, 52,
41    02, 01, 00,
42    05, 02, 00, 00,
43    00, 02, 56, 4e,
44    01, 01, 00,
45    00, 02, 4a, 50,
46    02, 01, 00,
47    00, 02, 54, 57,
48    02, 01, 00,
49    00, 02, 4e, 50,
50    01, 01, 00,
51    00, 02, 55, 5a,
52    02, 01, 00,
53}
54