2011-08-31 15:27:46 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
2011-10-01 08:04:14 +00:00
|
|
|
RTCTime timespec;
|
|
|
|
RTCAlarm alarmspec;
|
2011-09-01 17:31:10 +00:00
|
|
|
|
2012-01-11 20:07:19 +00:00
|
|
|
#define TEST_ALARM_WAKEUP TRUE
|
2011-09-25 10:32:39 +00:00
|
|
|
|
|
|
|
#if TEST_ALARM_WAKEUP
|
|
|
|
|
2012-01-11 20:07:19 +00:00
|
|
|
static void my_cb(RTCDriver *rtcp, rtcevent_t event) {
|
|
|
|
(void)rtcp;
|
|
|
|
(void)event;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-09-25 10:32:39 +00:00
|
|
|
/* sleep indicator thread */
|
2011-09-01 17:31:10 +00:00
|
|
|
static WORKING_AREA(blinkWA, 128);
|
|
|
|
static msg_t blink_thd(void *arg){
|
|
|
|
(void)arg;
|
|
|
|
while (TRUE) {
|
2011-09-25 10:32:39 +00:00
|
|
|
chThdSleepMilliseconds(100);
|
2012-01-11 20:07:19 +00:00
|
|
|
palTogglePad(GPIOC, GPIOC_LED);
|
2011-09-01 17:31:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
halInit();
|
|
|
|
chSysInit();
|
|
|
|
|
|
|
|
chThdCreateStatic(blinkWA, sizeof(blinkWA), NORMALPRIO, blink_thd, NULL);
|
|
|
|
/* set alarm in near future */
|
2012-01-11 20:07:19 +00:00
|
|
|
rtcGetTime(&RTCD1, ×pec);
|
|
|
|
alarmspec.tv_sec = timespec.tv_sec + 30;
|
|
|
|
rtcSetAlarm(&RTCD1, 0, &alarmspec);
|
|
|
|
|
|
|
|
/* Needed just to switch interrupts on.*/
|
|
|
|
rtcSetCallback(&RTCD1, my_cb);
|
2011-09-01 17:31:10 +00:00
|
|
|
|
|
|
|
while (TRUE){
|
2012-01-11 20:07:19 +00:00
|
|
|
chThdSleepSeconds(10);
|
|
|
|
chSysLock();
|
2011-09-01 17:31:10 +00:00
|
|
|
|
2012-01-11 20:07:19 +00:00
|
|
|
/* going to anabiosis*/
|
|
|
|
PWR->CR |= (PWR_CR_PDDS | PWR_CR_LPDS | PWR_CR_CSBF | PWR_CR_CWUF);
|
|
|
|
SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;
|
|
|
|
__WFI();
|
2011-09-01 17:31:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-25 10:32:39 +00:00
|
|
|
#else /* TEST_ALARM_WAKEUP */
|
2011-08-31 15:27:46 +00:00
|
|
|
|
2012-01-11 20:07:19 +00:00
|
|
|
/* Manually reloaded test alarm period.*/
|
|
|
|
#define RTC_ALARMPERIOD 10
|
|
|
|
|
|
|
|
BinarySemaphore alarm_sem;
|
|
|
|
|
2011-10-01 08:04:14 +00:00
|
|
|
static void my_cb(RTCDriver *rtcp, rtcevent_t event) {
|
2011-12-16 14:42:23 +00:00
|
|
|
|
2011-08-31 15:27:46 +00:00
|
|
|
(void)rtcp;
|
|
|
|
|
2011-10-01 08:04:14 +00:00
|
|
|
switch (event) {
|
|
|
|
case RTC_EVENT_OVERFLOW:
|
|
|
|
palTogglePad(GPIOC, GPIOC_LED);
|
|
|
|
break;
|
|
|
|
case RTC_EVENT_SECOND:
|
2011-12-17 19:08:16 +00:00
|
|
|
/* palTogglePad(GPIOC, GPIOC_LED); */
|
2011-10-01 08:04:14 +00:00
|
|
|
break;
|
|
|
|
case RTC_EVENT_ALARM:
|
|
|
|
palTogglePad(GPIOC, GPIOC_LED);
|
2012-01-11 20:07:19 +00:00
|
|
|
chBSemSignalI(&alarm_sem);
|
2011-10-01 08:04:14 +00:00
|
|
|
break;
|
|
|
|
}
|
2011-08-31 15:27:46 +00:00
|
|
|
}
|
|
|
|
|
2011-12-16 14:42:23 +00:00
|
|
|
int main(void) {
|
2012-01-11 20:07:19 +00:00
|
|
|
msg_t status = RDY_TIMEOUT;
|
|
|
|
|
2011-08-31 15:27:46 +00:00
|
|
|
halInit();
|
|
|
|
chSysInit();
|
2012-01-11 20:07:19 +00:00
|
|
|
chBSemInit(&alarm_sem, TRUE);
|
2011-08-31 15:27:46 +00:00
|
|
|
|
2011-10-01 08:04:14 +00:00
|
|
|
rtcGetTime(&RTCD1, ×pec);
|
2012-01-11 20:07:19 +00:00
|
|
|
alarmspec.tv_sec = timespec.tv_sec + RTC_ALARMPERIOD;
|
2011-10-01 08:04:14 +00:00
|
|
|
rtcSetAlarm(&RTCD1, 0, &alarmspec);
|
2011-09-25 10:32:39 +00:00
|
|
|
|
2011-12-16 14:42:23 +00:00
|
|
|
rtcSetCallback(&RTCD1, my_cb);
|
2011-08-31 15:27:46 +00:00
|
|
|
while (TRUE){
|
2012-01-11 20:07:19 +00:00
|
|
|
|
|
|
|
/* Wait until alarm callback signaled semaphore.*/
|
|
|
|
status = chBSemWaitTimeout(&alarm_sem, S2ST(RTC_ALARMPERIOD + 5));
|
|
|
|
|
|
|
|
if (status == RDY_TIMEOUT){
|
|
|
|
chSysHalt();
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
rtcGetTime(&RTCD1, ×pec);
|
|
|
|
alarmspec.tv_sec = timespec.tv_sec + RTC_ALARMPERIOD;
|
|
|
|
rtcSetAlarm(&RTCD1, 0, &alarmspec);
|
|
|
|
}
|
2011-08-31 15:27:46 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-09-25 10:32:39 +00:00
|
|
|
#endif /* TEST_ALARM_WAKEUP */
|