diff options
| author | Keith Packard <keithp@keithp.com> | 2014-05-21 01:35:33 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2014-05-21 01:43:12 -0700 | 
| commit | 8b488bdd0f5c91be7e5aae1c8f0193e713734b14 (patch) | |
| tree | 35f60feddd36b00ee5f4a5c5498f75911d99080f | |
| parent | cb228304d8df3063914ab505a530d4ea79ca027d (diff) | |
altos: Fix cc115l debug build
New compiler warning flags and moving to the nxp require a few minor
changes in the code to make it work.
Signed-off-by: Keith Packard <keithp@keithp.com>
| -rw-r--r-- | src/drivers/ao_cc115l.c | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/src/drivers/ao_cc115l.c b/src/drivers/ao_cc115l.c index f0f72d4d..d9b9a89b 100644 --- a/src/drivers/ao_cc115l.c +++ b/src/drivers/ao_cc115l.c @@ -52,8 +52,8 @@ struct ao_cc115l_reg {  #if CC115L_TRACE -const static struct ao_cc115l_reg ao_cc115l_reg[]; -const static char *cc115l_state_name[]; +static const struct ao_cc115l_reg ao_cc115l_reg[]; +static const char *cc115l_state_name[];  enum ao_cc115l_trace_type {  	trace_strobe, @@ -88,6 +88,8 @@ static void trace_add(enum ao_cc115l_trace_type type, int16_t addr, int16_t valu  	case trace_strobe:  		comment = cc115l_state_name[(value >> 4) & 0x7];  		break; +	default: +		break;  	}  	trace[trace_i].type = type;  	trace[trace_i].addr = addr; @@ -197,24 +199,22 @@ ao_radio_tx_fifo_space(void)  	return CC115L_FIFO_SIZE - (ao_radio_reg_read(CC115L_TXBYTES) & CC115L_TXBYTES_NUM_TX_BYTES_MASK);  } -#if UNUSED +#if CC115L_DEBUG  static uint8_t  ao_radio_status(void)  {  	return ao_radio_strobe (CC115L_SNOP);  } -#endif - -#define ao_radio_rdf_value 0x55 -#if UNUSED  static uint8_t  ao_radio_get_marcstate(void)  {  	return ao_radio_reg_read(CC115L_MARCSTATE) & CC115L_MARCSTATE_MASK;  }  #endif -	   + +#define ao_radio_rdf_value 0x55 +  static void  ao_radio_done_isr(void)  { @@ -668,8 +668,8 @@ ao_radio_test_cmd(void)  static inline int16_t  ao_radio_gpio_bits(void)  { -	return AO_CC115L_DONE_INT_PORT->idr & ((1 << AO_CC115L_FIFO_INT_PIN) | -					       (1 << AO_CC115L_DONE_INT_PIN)); +	return ((ao_gpio_get(AO_CC115L_DONE_INT_PORT, AO_CC115L_DONE_INT_PIN, AO_CC115L_DONE_INT) << 1) | +		ao_gpio_get(AO_CC115L_FIFO_INT_PORT, AO_CC115L_FIFO_INT_PIN, AO_CC115L_FIFO_INT));  }  #endif @@ -819,7 +819,7 @@ ao_radio_send_aprs(ao_radio_fill_func fill)  }  #if CC115L_DEBUG -const static char *cc115l_state_name[] = { +static const char *cc115l_state_name[] = {  	[CC115L_STATUS_STATE_IDLE] = "IDLE",  	[CC115L_STATUS_STATE_TX] = "TX",  	[CC115L_STATUS_STATE_FSTXON] = "FSTXON", @@ -828,7 +828,7 @@ const static char *cc115l_state_name[] = {  	[CC115L_STATUS_STATE_TX_FIFO_UNDERFLOW] = "TX_FIFO_UNDERFLOW",  }; -const static struct ao_cc115l_reg ao_cc115l_reg[] = { +static const struct ao_cc115l_reg ao_cc115l_reg[] = {  	{ .addr = CC115L_IOCFG2, .name = "IOCFG2" },  	{ .addr = CC115L_IOCFG1, .name = "IOCFG1" },  	{ .addr = CC115L_IOCFG0, .name = "IOCFG0" }, @@ -874,7 +874,7 @@ const static struct ao_cc115l_reg ao_cc115l_reg[] = {  static void ao_radio_show(void) {  	uint8_t	status = ao_radio_status(); -	int	i; +	unsigned int	i;  	ao_radio_get();  	status = ao_radio_status(); | 
