37 #include "contiki-conf.h"
40 #define LPM_ON LPM_CONF_ON
46 #define LPM_OFF LPM_CONF_OFF
48 #define LPM_OFF LPM1_EXIT
51 #define LPM_SLEEP() do { if(lpm_status == LPM_STATUS_ON) LPM_ON; } while(0)
52 #define LPM_AWAKE() do { if(lpm_status == LPM_STATUS_ON) LPM_OFF; } while(0)
54 extern unsigned char lpm_status;
59 #define LPM_STATUS_OFF 0
60 #define LPM_STATUS_ON 1