diff options
| author | Keith Packard <keithp@keithp.com> | 2011-10-15 22:54:40 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-10-15 22:54:40 -0700 | 
| commit | a10aa835a06b71e2cefeb6b10daaf8cc394603b6 (patch) | |
| tree | a43724578a48a4a87cd9ff7a62aa38b1227e38c0 /src | |
| parent | aef732fc9cdf527a18f2959d6fb7903e832209da (diff) | |
altos: Add LEGACY_MONITOR defines to more programs
Make all monitoring programs define whether they want all of the old
telemetry formats too.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/cc1111/ao_pins.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/cc1111/ao_pins.h b/src/cc1111/ao_pins.h index d2fbb209..7c5b4574 100644 --- a/src/cc1111/ao_pins.h +++ b/src/cc1111/ao_pins.h @@ -112,6 +112,7 @@  	#define SPI_CS_ON_P0		0  	#define HAS_IGNITE		0  	#define HAS_MONITOR		1 +	#define LEGACY_MONITOR		1  	#define HAS_RSSI		1  	#define HAS_AES			1  #endif @@ -222,6 +223,7 @@  	#define SPI_CS_ON_P0		1  	#define HAS_IGNITE		0  	#define HAS_MONITOR		1 +	#define LEGACY_MONITOR		1  	#define HAS_RSSI		1  	#define HAS_AES			1  #endif @@ -248,6 +250,7 @@  	#define SPI_CS_ON_P0		1  	#define HAS_IGNITE		0  	#define HAS_MONITOR		1 +	#define LEGACY_MONITOR		1  	#define HAS_RSSI		1  	#define HAS_AES			1  #endif @@ -281,6 +284,7 @@  	#define BT_LINK_PIN_INDEX	7  	#define BT_LINK_PIN		P2_1  	#define HAS_MONITOR		1 +	#define LEGACY_MONITOR		1  	#define HAS_RSSI		0  	#define HAS_AES			1  #endif @@ -321,6 +325,7 @@  	#define BT_LINK_PIN_INDEX	7  	#define BT_LINK_PIN		P1_7  	#define HAS_MONITOR		1 +	#define LEGACY_MONITOR		1  	#define HAS_RSSI		0  	#define HAS_AES			1  #endif | 
