2008-03-13 14:41:17 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ch.h>
|
2009-06-07 10:27:48 +00:00
|
|
|
#include <pal.h>
|
2008-04-13 17:03:56 +00:00
|
|
|
#include <test.h>
|
2008-03-13 14:41:17 +00:00
|
|
|
|
2008-04-11 14:39:49 +00:00
|
|
|
#include "board.h"
|
2008-04-13 17:03:56 +00:00
|
|
|
#include "stm32_serial.h"
|
2008-04-11 14:39:49 +00:00
|
|
|
|
2009-06-07 15:44:03 +00:00
|
|
|
static IOBUS_DECL(LedBus, IOPORT_C, 1, GPIOC_LED);
|
|
|
|
|
2008-03-13 14:41:17 +00:00
|
|
|
/*
|
|
|
|
* Red LEDs blinker thread, times are in milliseconds.
|
|
|
|
*/
|
2008-11-29 12:15:17 +00:00
|
|
|
static WORKING_AREA(waThread1, 128);
|
2008-03-13 14:41:17 +00:00
|
|
|
static msg_t Thread1(void *arg) {
|
|
|
|
|
|
|
|
while (TRUE) {
|
2009-06-07 10:27:48 +00:00
|
|
|
palClearPad(IOPORT_C, GPIOC_LED);
|
2008-11-15 10:19:57 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2009-06-07 10:27:48 +00:00
|
|
|
palSetPad(IOPORT_C, GPIOC_LED);
|
2008-11-15 10:19:57 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2009-06-07 15:44:03 +00:00
|
|
|
palTogglePad(IOPORT_C, GPIOC_LED);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palTogglePad(IOPORT_C, GPIOC_LED);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palWritePad(IOPORT_C, GPIOC_LED, PAL_LOW);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palWritePad(IOPORT_C, GPIOC_LED, PAL_HIGH);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palWriteGroup(IOPORT_C, 1, GPIOC_LED, PAL_LOW);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palWriteGroup(IOPORT_C, 1, GPIOC_LED, PAL_HIGH);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palClearPort(IOPORT_C, PAL_PORT_BIT(GPIOC_LED));
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palSetPort(IOPORT_C, PAL_PORT_BIT(GPIOC_LED));
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palTogglePort(IOPORT_C, PAL_PORT_BIT(GPIOC_LED));
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palTogglePort(IOPORT_C, PAL_PORT_BIT(GPIOC_LED));
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palWriteBus(&LedBus, PAL_LOW);
|
|
|
|
chThdSleepMilliseconds(500);
|
|
|
|
palWriteBus(&LedBus, PAL_HIGH);
|
|
|
|
chThdSleepMilliseconds(500);
|
2008-03-13 14:41:17 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-10-04 09:31:36 +00:00
|
|
|
* Entry point, note, the main() function is already a thread in the system
|
|
|
|
* on entry.
|
2008-03-13 14:41:17 +00:00
|
|
|
*/
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
|
|
|
|
/*
|
2008-09-24 12:28:07 +00:00
|
|
|
* Creates the blinker thread.
|
2008-03-13 14:41:17 +00:00
|
|
|
*/
|
2008-09-24 12:28:07 +00:00
|
|
|
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
|
2008-03-13 14:41:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Normal main() thread activity, in this demo it does nothing except
|
2008-05-16 09:17:25 +00:00
|
|
|
* sleeping in a loop and check the button state.
|
2008-03-13 14:41:17 +00:00
|
|
|
*/
|
2008-04-13 17:03:56 +00:00
|
|
|
while (TRUE) {
|
2009-06-07 10:27:48 +00:00
|
|
|
if (palReadPad(IOPORT_A, GPIOA_BUTTON))
|
2008-04-13 17:03:56 +00:00
|
|
|
TestThread(&COM2);
|
2008-11-15 10:19:57 +00:00
|
|
|
chThdSleepMilliseconds(500);
|
2008-04-13 17:03:56 +00:00
|
|
|
}
|
2008-03-13 14:41:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|