mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Fix compiler warning for unused variable
This commit is contained in:
parent
55c1ce6e93
commit
580efaa412
@ -329,7 +329,10 @@ schedule_powercycle_fixed(struct rtimer *t, rtimer_clock_t fixed_time)
|
|||||||
static void
|
static void
|
||||||
powercycle_turn_radio_off(void)
|
powercycle_turn_radio_off(void)
|
||||||
{
|
{
|
||||||
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
uint8_t was_on = radio_is_on;
|
uint8_t was_on = radio_is_on;
|
||||||
|
#endif /* CONTIKIMAC_CONF_COMPOWER */
|
||||||
|
|
||||||
if(we_are_sending == 0) {
|
if(we_are_sending == 0) {
|
||||||
off();
|
off();
|
||||||
#if CONTIKIMAC_CONF_COMPOWER
|
#if CONTIKIMAC_CONF_COMPOWER
|
||||||
|
Loading…
Reference in New Issue
Block a user