git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2391 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
66c3169f4f
commit
0d717a5f9f
|
@ -25,14 +25,14 @@
|
|||
#include "web/web.h"
|
||||
|
||||
static WORKING_AREA(waThread1, 64);
|
||||
static msg_t Thread1(void *arg) {
|
||||
static msg_t Thread1(void *p) {
|
||||
|
||||
(void)arg;
|
||||
(void)p;
|
||||
while (TRUE) {
|
||||
palClearPad(IOPORT2, PIOB_LCD_BL);
|
||||
chThdSleepMilliseconds(900);
|
||||
palSetPad(IOPORT2, PIOB_LCD_BL);
|
||||
chThdSleepMilliseconds(100);
|
||||
palClearPad(IOPORT2, PIOB_LCD_BL);
|
||||
chThdSleepMilliseconds(900);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue