From c523fa6f7aa0e64600e0a82082bd4067cbc2a4a5 Mon Sep 17 00:00:00 2001 From: Jonathan Struebel Date: Mon, 18 Apr 2016 20:40:13 -0700 Subject: [KINETIS] Moved time variable definition in blinker thread --- testhal/KINETIS/FRDM-K20D50M/USB_SERIAL/main.c | 4 ++-- testhal/KINETIS/FRDM-KL25Z/USB_SERIAL/main.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'testhal/KINETIS') diff --git a/testhal/KINETIS/FRDM-K20D50M/USB_SERIAL/main.c b/testhal/KINETIS/FRDM-K20D50M/USB_SERIAL/main.c index 616c7c6..a6c90bf 100644 --- a/testhal/KINETIS/FRDM-K20D50M/USB_SERIAL/main.c +++ b/testhal/KINETIS/FRDM-K20D50M/USB_SERIAL/main.c @@ -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); diff --git a/testhal/KINETIS/FRDM-KL25Z/USB_SERIAL/main.c b/testhal/KINETIS/FRDM-KL25Z/USB_SERIAL/main.c index 897dc58..77c6063 100644 --- a/testhal/KINETIS/FRDM-KL25Z/USB_SERIAL/main.c +++ b/testhal/KINETIS/FRDM-KL25Z/USB_SERIAL/main.c @@ -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); -- cgit v1.2.3