[KINETIS] Moved time variable definition in blinker thread

This commit is contained in:
Jonathan Struebel 2016-04-18 20:40:13 -07:00
parent 17acbeb15f
commit c523fa6f7a
3 changed files with 5 additions and 5 deletions

View File

@ -26,12 +26,12 @@ SerialConfig s0cfg = {
*/
static THD_WORKING_AREA(waBlinkThread, 128);
static THD_FUNCTION(BlinkThread, arg) {
systime_t time = 500;
(void)arg;
chRegSetThreadName("blinker");
while (true) {
systime_t time = 500;
palTogglePad(GPIO_LED_BLUE, PIN_LED_BLUE);
chThdSleepMilliseconds(time);
}

View File

@ -91,12 +91,12 @@ static const ShellConfig shell_cfg1 = {
*/
static THD_WORKING_AREA(waThread1, 128);
static THD_FUNCTION(Thread1, arg) {
systime_t time;
(void)arg;
chRegSetThreadName("blinker");
while (true) {
systime_t time;
time = serusbcfg.usbp->state == USB_ACTIVE ? 250 : 500;
palClearPad(GPIO_LED_RED, PIN_LED_RED);
chThdSleepMilliseconds(time);

View File

@ -91,12 +91,12 @@ static const ShellConfig shell_cfg1 = {
*/
static THD_WORKING_AREA(waThread1, 128);
static THD_FUNCTION(Thread1, arg) {
systime_t time;
(void)arg;
chRegSetThreadName("blinker");
while (true) {
systime_t time;
time = serusbcfg.usbp->state == USB_ACTIVE ? 250 : 500;
palClearPad(GPIO_LED_RED, PIN_LED_RED);
chThdSleepMilliseconds(time);