view autocal/stdband.h @ 43:8c7b0ba1e5c4

fc-rfcal-gmagic: main() coming along
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 27 May 2017 05:11:43 +0000
parents dcf7cd305e2b
children e93b5e727230
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(2, 0)
#define	RFPW_STD_BAND_1800	RFPW_STD_BAND(4, 0)
#define	RFPW_STD_BAND_1900	RFPW_STD_BAND(3, 0)