2008-02-06 14:41:28 +00:00
|
|
|
/*
|
2010-02-21 07:24:53 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio.
|
2008-02-06 14:41:28 +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-11-29 13:37:19 +00:00
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
#include "test.h"
|
2008-02-19 15:34:41 +00:00
|
|
|
|
2010-11-20 11:21:36 +00:00
|
|
|
static WORKING_AREA(waThread1, 128);
|
2009-10-17 10:33:37 +00:00
|
|
|
static msg_t Thread1(void *p) {
|
2008-02-19 15:34:41 +00:00
|
|
|
|
2009-10-17 10:33:37 +00:00
|
|
|
(void)p;
|
2008-02-19 15:34:41 +00:00
|
|
|
while (TRUE) {
|
2009-08-27 16:42:07 +00:00
|
|
|
palSetPad(IOPORT2, PIOB_LCD_BL);
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(100);
|
2009-08-27 16:42:07 +00:00
|
|
|
palClearPad(IOPORT2, PIOB_LCD_BL);
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(900);
|
2008-02-19 15:34:41 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-02-06 14:41:28 +00:00
|
|
|
|
|
|
|
/*
|
2008-10-04 09:59:39 +00:00
|
|
|
* Entry point, note, the main() function is already a thread in the system
|
|
|
|
* on entry.
|
2008-02-06 14:41:28 +00:00
|
|
|
*/
|
|
|
|
int main(int argc, char **argv) {
|
2009-10-17 10:33:37 +00:00
|
|
|
(void)argc;
|
|
|
|
(void)argv;
|
2008-02-06 14:41:28 +00:00
|
|
|
|
2009-08-21 11:08:53 +00:00
|
|
|
/*
|
2009-08-27 16:42:07 +00:00
|
|
|
* Activates the serial driver 1 using the driver default configuration.
|
2009-08-21 11:08:53 +00:00
|
|
|
*/
|
2009-08-27 16:42:07 +00:00
|
|
|
sdStart(&SD1, NULL);
|
2009-08-21 11:08:53 +00:00
|
|
|
|
2008-02-06 14:41:28 +00:00
|
|
|
/*
|
2008-10-04 09:59:39 +00:00
|
|
|
* Creates the blinker thread.
|
2008-02-06 14:41:28 +00:00
|
|
|
*/
|
2008-09-24 12:28:07 +00:00
|
|
|
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
2008-02-19 15:34:41 +00:00
|
|
|
|
2008-10-04 09:59:39 +00:00
|
|
|
/*
|
|
|
|
* Normal main() thread activity.
|
|
|
|
*/
|
2008-02-19 15:34:41 +00:00
|
|
|
while (TRUE) {
|
2008-11-15 10:34:35 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2009-08-27 16:42:07 +00:00
|
|
|
if (!palReadPad(IOPORT2, PIOB_SW1))
|
|
|
|
sdWrite(&SD1, (uint8_t *)"Hello World!\r\n", 14);
|
|
|
|
if (!palReadPad(IOPORT2, PIOB_SW2))
|
|
|
|
TestThread(&SD1);
|
2008-02-19 15:34:41 +00:00
|
|
|
}
|
2008-02-06 14:41:28 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|