FreeCalypso > hg > fc-rfcal-tools
comparison autocal/stdband.h @ 52:e93b5e727230
autocal: use DUALEXT STD for 900 and 1800 MHz bands
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 27 May 2017 07:53:36 +0000 |
| parents | dcf7cd305e2b |
| children |
comparison
equal
deleted
inserted
replaced
| 51:fe39aac56cde | 52:e93b5e727230 |
|---|---|
| 1 /* macro for encoding std and band in rfpw 7 command */ | 1 /* macro for encoding std and band in rfpw 7 command */ |
| 2 | 2 |
| 3 #define RFPW_STD_BAND(std,band) ((std) | ((band) << 8)) | 3 #define RFPW_STD_BAND(std,band) ((std) | ((band) << 8)) |
| 4 | 4 |
| 5 #define RFPW_STD_BAND_850 RFPW_STD_BAND(7, 0) | 5 #define RFPW_STD_BAND_850 RFPW_STD_BAND(7, 0) |
| 6 #define RFPW_STD_BAND_900 RFPW_STD_BAND(2, 0) | 6 #define RFPW_STD_BAND_900 RFPW_STD_BAND(6, 0) |
| 7 #define RFPW_STD_BAND_1800 RFPW_STD_BAND(4, 0) | 7 #define RFPW_STD_BAND_1800 RFPW_STD_BAND(6, 1) |
| 8 #define RFPW_STD_BAND_1900 RFPW_STD_BAND(3, 0) | 8 #define RFPW_STD_BAND_1900 RFPW_STD_BAND(3, 0) |
