2008-05-07 13:08:43 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2012-01-21 14:29:42 +00:00
|
|
|
2011,2012 Giovanni Di Sirio.
|
2008-05-07 13:08:43 +00:00
|
|
|
|
|
|
|
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;
|
2011-07-10 06:50:12 +00:00
|
|
|
chRegSetThreadName("blinker");
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2010-12-19 10:50:04 +00:00
|
|
|
* Application entry point.
|
2008-05-07 13:08:43 +00:00
|
|
|
*/
|
2010-12-21 10:30:39 +00:00
|
|
|
int main(void) {
|
2009-10-17 11:07:15 +00:00
|
|
|
|
2008-05-07 13:08:43 +00:00
|
|
|
/*
|
2010-12-19 10:50:04 +00:00
|
|
|
* System initializations.
|
|
|
|
* - HAL initialization, this also initializes the configured device drivers
|
|
|
|
* and performs the board-specific initializations.
|
|
|
|
* - Kernel initialization, the main() function becomes a thread and the
|
|
|
|
* RTOS is active.
|
2008-05-07 13:08:43 +00:00
|
|
|
*/
|
2010-12-19 10:50:04 +00:00
|
|
|
halInit();
|
|
|
|
chSysInit();
|
2008-05-07 13:08:43 +00:00
|
|
|
|
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;
|
|
|
|
}
|