Fixing sleep on stm32w108 cpu

This commit is contained in:
Gianfranco Costamagna 2013-11-19 18:34:24 +01:00
parent dc05eea3f5
commit 542d8490ef

View File

@ -31,7 +31,6 @@
#include "contiki-lib.h"
#include "contiki-net.h"
#include "sleep.h"
#include "board-sensors.h"
#include "board.h"
@ -167,7 +166,7 @@ PROCESS_THREAD(udp_client_process, ev, data)
if(etimer_expired(&wake_timer)){ // if timer hasn't expired do not go in deep sleep, in order to receive a response.
printf("Sleeping...\r\n");
halBoardPowerDown();//sensorsPowerDown();
sleep_seconds(SLEEP_INTERVAL_SECONDS); // Put system in deep sleep mode for a while.
clock_wait(SLEEP_INTERVAL_SECONDS * 1000); // Put system in deep sleep mode for a while.
halBoardPowerUp();//sensorsPowerUp();
printf("Awake\r\n");
}