aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32F1xx/RTC/main.c
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-31 15:27:46 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-31 15:27:46 +0000
commit7fd48a4a3f590d6cfe7cd98fe7dd96c7498f08e2 (patch)
tree44e5e9600eb6efad7ee704f39ff8a3fd83c3080f /testhal/STM32F1xx/RTC/main.c
parentc8f60c27e1cdcd9d5a5592287d453d8d1fe0051f (diff)
downloadChibiOS-7fd48a4a3f590d6cfe7cd98fe7dd96c7498f08e2.tar.gz
ChibiOS-7fd48a4a3f590d6cfe7cd98fe7dd96c7498f08e2.tar.bz2
ChibiOS-7fd48a4a3f590d6cfe7cd98fe7dd96c7498f08e2.zip
RTC. Hal test added.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/rtc_dev@3272 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32F1xx/RTC/main.c')
-rw-r--r--testhal/STM32F1xx/RTC/main.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/testhal/STM32F1xx/RTC/main.c b/testhal/STM32F1xx/RTC/main.c
new file mode 100644
index 000000000..b8c243810
--- /dev/null
+++ b/testhal/STM32F1xx/RTC/main.c
@@ -0,0 +1,62 @@
+/*
+ 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"
+
+
+
+static void my_secondcb(RTCDriver *rtcp){
+ (void)rtcp;
+ //palTogglePad(IOPORT3, GPIOC_LED);
+}
+
+static void my_alarmcb(RTCDriver *rtcp){
+ (void)rtcp;
+ palTogglePad(IOPORT3, GPIOC_LED);
+ rtcSetAlarm(rtcGetSec() + 10);
+}
+
+static void my_overflowcb(RTCDriver *rtcp){
+ (void)rtcp;
+ palTogglePad(IOPORT3, GPIOC_LED);
+ rtcSetAlarm(rtcGetSec() + 10);
+}
+
+static const RTCConfig rtccfg={
+ my_overflowcb,
+ my_secondcb,
+ my_alarmcb,
+};
+
+
+
+int main(void) {
+ halInit();
+ chSysInit();
+
+ rtcSetAlarm(rtcGetSec() + 10);
+ rtcStart(&RTCD, &rtccfg);
+
+ while (TRUE){
+ chThdSleepMilliseconds(500);
+ }
+ return 0;
+}