2008-05-07 13:08:43 +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-02 20:13:51 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
#include "test.h"
|
2008-05-07 13:08:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Red LEDs blinker thread, times are in milliseconds.
|
|
|
|
*/
|
2008-11-29 13:57:06 +00:00
|
|
|
static WORKING_AREA(waThread1, 64);
|
2008-05-07 13:08:43 +00:00
|
|
|
static msg_t Thread1(void *arg) {
|
|
|
|
|
2009-10-17 11:07:15 +00:00
|
|
|
(void)arg;
|
2008-05-07 13:08:43 +00:00
|
|
|
while (TRUE) {
|
2009-08-27 16:42:07 +00:00
|
|
|
palSetPad(IOPORT6, P6_O_LED);
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2009-08-27 16:42:07 +00:00
|
|
|
palClearPad(IOPORT6, P6_O_LED);
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2008-05-07 13:08:43 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Entry point, the interrupts are disabled on entry.
|
|
|
|
*/
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
|
2009-10-17 11:07:15 +00:00
|
|
|
(void)argc;
|
|
|
|
(void)argv;
|
|
|
|
|
2008-05-07 13:08:43 +00:00
|
|
|
/*
|
|
|
|
* Hardware initialization, see board.c.
|
|
|
|
*/
|
|
|
|
hwinit();
|
|
|
|
|
2009-08-21 13:11:31 +00:00
|
|
|
/*
|
2009-08-27 16:42:07 +00:00
|
|
|
* Activates the serial driver 2 using the driver default configuration.
|
2009-08-21 13:11:31 +00:00
|
|
|
*/
|
2009-08-27 16:42:07 +00:00
|
|
|
sdStart(&SD1, NULL);
|
2009-08-21 13:11:31 +00:00
|
|
|
|
2008-05-07 13:08:43 +00:00
|
|
|
/*
|
|
|
|
* The main() function becomes a thread here then the interrupts are
|
|
|
|
* enabled and ChibiOS/RT goes live.
|
|
|
|
*/
|
|
|
|
chSysInit();
|
|
|
|
|
|
|
|
/*
|
2008-09-24 12:28:07 +00:00
|
|
|
* Creates the blinker thread.
|
2008-05-07 13:08:43 +00:00
|
|
|
*/
|
2008-09-24 12:28:07 +00:00
|
|
|
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
2008-05-07 13:08:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Normal main() thread activity, in this demo it does nothing except
|
|
|
|
* sleeping in a loop.
|
|
|
|
*/
|
|
|
|
while (TRUE) {
|
2009-08-27 16:42:07 +00:00
|
|
|
if (!palReadPad(IOPORT6, P6_I_BUTTON))
|
|
|
|
TestThread(&SD1);
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2008-05-07 13:08:43 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|