Go to the documentation of this file.
37 #define EEP_MAX_CONTEXT_SIZE 256
39 #define CB_EEPROM_READBYTE_WAIT 900 //us
41 #define W_MAX_I2CRETRY 0x0fff
46 #define EEP_OFS_PAR 0x00 // physical address
47 #define EEP_OFS_ANTENNA 0x16
48 #define EEP_OFS_RADIOCTL 0x17
49 #define EEP_OFS_RFTYPE 0x1B // for select RF
50 #define EEP_OFS_MINCHANNEL 0x1C // Min Channel #
51 #define EEP_OFS_MAXCHANNEL 0x1D // Max Channel #
52 #define EEP_OFS_SIGNATURE 0x1E //
53 #define EEP_OFS_ZONETYPE 0x1F //
54 #define EEP_OFS_RFTABLE 0x20 // RF POWER TABLE
55 #define EEP_OFS_PWR_CCK 0x20
56 #define EEP_OFS_SETPT_CCK 0x21
57 #define EEP_OFS_PWR_OFDMG 0x23
58 #define EEP_OFS_SETPT_OFDMG 0x24
59 #define EEP_OFS_PWR_FORMULA_OST 0x26 //
60 #define EEP_OFS_MAJOR_VER 0x2E
61 #define EEP_OFS_MINOR_VER 0x2F
62 #define EEP_OFS_CCK_PWR_TBL 0x30
63 #define EEP_OFS_CCK_PWR_dBm 0x3F
64 #define EEP_OFS_OFDM_PWR_TBL 0x40
65 #define EEP_OFS_OFDM_PWR_dBm 0x4F
67 #define EEP_OFS_SETPT_OFDMA 0x4E
68 #define EEP_OFS_OFDMA_PWR_TBL 0x50
70 #define EEP_OFS_OFDMA_PWR_dBm 0xD2
74 #define EEP_OFS_BBTAB_LEN 0x70 // BB Table Length
75 #define EEP_OFS_BBTAB_ADR 0x71 // BB Table Offset
76 #define EEP_OFS_CHECKSUM 0xFF // reserved area for baseband 28h ~ 78h
78 #define EEP_I2C_DEV_ID 0x50 // EEPROM device address on the I2C bus
84 #define EEP_ANTENNA_MAIN 0x01
85 #define EEP_ANTENNA_AUX 0x02
86 #define EEP_ANTINV 0x04
91 #define EEP_RADIOCTL_ENABLE 0x80
92 #define EEP_RADIOCTL_INV 0x01
138 unsigned char SROMbyReadEmbedded(
unsigned long dwIoBase,
unsigned char byContntOffset);
139 bool SROMbWriteEmbedded(
unsigned long dwIoBase,
unsigned char byContntOffset,
unsigned char byData);
141 void SROMvRegBitsOn(
unsigned long dwIoBase,
unsigned char byContntOffset,
unsigned char byBits);
142 void SROMvRegBitsOff(
unsigned long dwIoBase,
unsigned char byContntOffset,
unsigned char byBits);
144 bool SROMbIsRegBitsOn(
unsigned long dwIoBase,
unsigned char byContntOffset,
unsigned char byTestBits);
145 bool SROMbIsRegBitsOff(
unsigned long dwIoBase,
unsigned char byContntOffset,
unsigned char byTestBits);
157 #endif // __EEPROM_H__