2008-02-27 15:36:56 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006-2007 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/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-08 14:42:32 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
#include "evtimer.h"
|
2008-02-27 15:36:56 +00:00
|
|
|
|
2008-03-07 15:24:00 +00:00
|
|
|
#include "lcd.h"
|
2008-02-29 14:55:04 +00:00
|
|
|
|
2008-11-29 12:55:35 +00:00
|
|
|
static WORKING_AREA(waThread1, 32);
|
2008-03-05 10:59:11 +00:00
|
|
|
static msg_t Thread1(void *arg) {
|
2008-02-27 15:36:56 +00:00
|
|
|
|
|
|
|
while (TRUE) {
|
2008-03-07 15:24:00 +00:00
|
|
|
if (!(PINA & PORTA_BUTTON2))
|
|
|
|
PORTA ^= PORTA_RELAY;
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(1000);
|
2008-02-27 15:36:56 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-03-05 15:56:12 +00:00
|
|
|
static void TimerHandler(eventid_t id) {
|
|
|
|
msg_t TestThread(void *p);
|
|
|
|
|
2008-03-07 15:24:00 +00:00
|
|
|
if (!(PINA & PORTA_BUTTON1))
|
2009-08-26 13:34:52 +00:00
|
|
|
TestThread(&SD2);
|
2008-03-05 15:56:12 +00:00
|
|
|
}
|
|
|
|
|
2008-02-27 15:36:56 +00:00
|
|
|
int main(int argc, char **argv) {
|
2008-03-05 15:56:12 +00:00
|
|
|
static EvTimer evt;
|
|
|
|
static evhandler_t handlers[1] = {
|
|
|
|
TimerHandler
|
|
|
|
};
|
|
|
|
static EventListener el0;
|
2008-02-27 15:36:56 +00:00
|
|
|
|
|
|
|
hwinit();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The main() function becomes a thread here then the interrupts are
|
|
|
|
* enabled and ChibiOS/RT goes live.
|
|
|
|
*/
|
|
|
|
chSysInit();
|
|
|
|
|
2009-08-26 13:34:52 +00:00
|
|
|
/*
|
|
|
|
* Activates the serial driver 2 using the driver default configuration.
|
|
|
|
*/
|
|
|
|
sdStart(&SD2, NULL);
|
|
|
|
|
2008-03-07 15:24:00 +00:00
|
|
|
/*
|
|
|
|
* This initialization requires the OS already active because it uses delay
|
|
|
|
* APIs inside.
|
|
|
|
*/
|
|
|
|
lcdInit();
|
|
|
|
lcdCmd(LCD_CLEAR);
|
|
|
|
lcdPuts(LCD_LINE1, " ChibiOS/RT ");
|
|
|
|
lcdPuts(LCD_LINE2, " Hello World! ");
|
|
|
|
|
2008-03-05 15:56:12 +00:00
|
|
|
/*
|
|
|
|
* Event Timer initialization.
|
|
|
|
*/
|
2008-11-15 10:34:35 +00:00
|
|
|
evtInit(&evt, MS2ST(500)); /* Initializes an event timer object. */
|
2008-03-05 15:56:12 +00:00
|
|
|
evtStart(&evt); /* Starts the event timer. */
|
|
|
|
chEvtRegister(&evt.et_es, &el0, 0); /* Registers on the timer event source. */
|
|
|
|
|
2008-02-27 15:36:56 +00:00
|
|
|
/*
|
|
|
|
* Starts the LED blinker thread.
|
|
|
|
*/
|
2008-09-24 12:28:07 +00:00
|
|
|
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
2008-02-27 15:36:56 +00:00
|
|
|
|
|
|
|
while(TRUE)
|
2008-11-15 10:34:35 +00:00
|
|
|
chEvtDispatch(handlers, chEvtWaitOne(ALL_EVENTS));
|
2008-02-27 15:36:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|