FreeCalypso > hg > fc-rfcal-tools
view autocal/stdband.h @ 124:9f09a7c3607a
fc-rfcal-txband: level error tolerance tightened to 0.75 dB
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sat, 12 Jan 2019 20:15:17 +0000 | 
| parents | e93b5e727230 | 
| children | 
line wrap: on
 line source
/* macro for encoding std and band in rfpw 7 command */ #define RFPW_STD_BAND(std,band) ((std) | ((band) << 8)) #define RFPW_STD_BAND_850 RFPW_STD_BAND(7, 0) #define RFPW_STD_BAND_900 RFPW_STD_BAND(6, 0) #define RFPW_STD_BAND_1800 RFPW_STD_BAND(6, 1) #define RFPW_STD_BAND_1900 RFPW_STD_BAND(3, 0)
