36 #include "contiki-conf.h"
39 #define LPM_ON LPM_CONF_ON
45 #define LPM_OFF LPM_CONF_OFF
47 #define LPM_OFF LPM1_EXIT
50 #define LPM_SLEEP() do { if(lpm_status == LPM_STATUS_ON) LPM_ON; } while(0)
51 #define LPM_AWAKE() do { if(lpm_status == LPM_STATUS_ON) LPM_OFF; } while(0)
53 extern unsigned char lpm_status;
58 #define LPM_STATUS_OFF 0
59 #define LPM_STATUS_ON 1