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
|
|
|
|
2011-12-12 13:13:07 +00:00
|
|
|
#define TEST_ALARM_WAKEUP FALSE
|
2011-09-25 10:32:39 +00:00
|
|
|
|
|
|
|
#if TEST_ALARM_WAKEUP
|
|
|
|
|
|
|
|
/* 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);
|
2011-09-01 17:31:10 +00:00
|
|
|
palTogglePad(IOPORT3, GPIOC_LED);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
halInit();
|
|
|
|
chSysInit();
|
|
|
|
|
|
|
|
chThdCreateStatic(blinkWA, sizeof(blinkWA), NORMALPRIO, blink_thd, NULL);
|
|
|
|
/* set alarm in near future */
|
2011-12-11 20:05:55 +00:00
|
|
|
rtcGetTime(&RTCD1, ×pec);
|
2011-09-25 10:32:39 +00:00
|
|
|
alarmspec.tv_sec = timespec.tv_sec + 60;
|
2011-12-11 20:05:55 +00:00
|
|
|
rtcSetAlarm(&RTCD1, 0, &alarmspec);
|
2011-09-01 17:31:10 +00:00
|
|
|
|
|
|
|
while (TRUE){
|
|
|
|
chThdSleepSeconds(10);
|
|
|
|
chSysLock();
|
|
|
|
|
|
|
|
/* going to anabiosis*/
|
|
|
|
PWR->CR |= (PWR_CR_PDDS | PWR_CR_LPDS | PWR_CR_CSBF | PWR_CR_CWUF);
|
|
|
|
SCB->SCR |= SCB_SCR_SLEEPDEEP_Msk;
|
|
|
|
__WFI();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-25 10:32:39 +00:00
|
|
|
#else /* TEST_ALARM_WAKEUP */
|
2011-08-31 15:27:46 +00:00
|
|
|
|
2011-12-12 13:13:07 +00:00
|
|
|
/**
|
|
|
|
* Callback function for RTC.
|
|
|
|
*/
|
2011-10-01 08:04:14 +00:00
|
|
|
static void my_cb(RTCDriver *rtcp, rtcevent_t event) {
|
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:
|
|
|
|
//palTogglePad(GPIOC, GPIOC_LED);
|
|
|
|
break;
|
|
|
|
case RTC_EVENT_ALARM:
|
|
|
|
palTogglePad(GPIOC, GPIOC_LED);
|
|
|
|
rtcGetTime(&RTCD1, ×pec);
|
2011-12-12 13:13:07 +00:00
|
|
|
alarmspec.tv_sec = timespec.tv_sec + 5;
|
2011-10-01 08:04:14 +00:00
|
|
|
rtcSetAlarm(&RTCD1, 0, &alarmspec);
|
|
|
|
break;
|
|
|
|
}
|
2011-08-31 15:27:46 +00:00
|
|
|
}
|
|
|
|
|
2011-12-12 13:13:07 +00:00
|
|
|
/**
|
|
|
|
* Configuration structure with all callbacks supported by platform.
|
|
|
|
*/
|
|
|
|
static RTCCallbackConfig rtc_cb_cfg = {
|
|
|
|
my_cb
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Main function.
|
|
|
|
*/
|
|
|
|
int main(void){
|
2011-08-31 15:27:46 +00:00
|
|
|
halInit();
|
|
|
|
chSysInit();
|
|
|
|
|
2011-10-01 08:04:14 +00:00
|
|
|
rtcGetTime(&RTCD1, ×pec);
|
2011-12-12 13:13:07 +00:00
|
|
|
alarmspec.tv_sec = timespec.tv_sec + 5;
|
2011-10-01 08:04:14 +00:00
|
|
|
rtcSetAlarm(&RTCD1, 0, &alarmspec);
|
2011-09-25 10:32:39 +00:00
|
|
|
|
2011-12-12 13:13:07 +00:00
|
|
|
rtcSetCallback(&RTCD1, &rtc_cb_cfg);
|
2011-08-31 15:27:46 +00:00
|
|
|
while (TRUE){
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2011-09-25 10:32:39 +00:00
|
|
|
#endif /* TEST_ALARM_WAKEUP */
|