diff options
author | Jonathan Struebel <jonathan.struebel@gmail.com> | 2016-04-18 20:40:13 -0700 |
---|---|---|
committer | Jonathan Struebel <jonathan.struebel@gmail.com> | 2016-04-18 20:40:13 -0700 |
commit | c523fa6f7aa0e64600e0a82082bd4067cbc2a4a5 (patch) | |
tree | f9a3e7291e5ebdfa10146abe721041d4b0d0bed2 /testhal/KINETIS | |
parent | 17acbeb15f21923150e29ad57201748a76b43110 (diff) | |
download | ChibiOS-Contrib-c523fa6f7aa0e64600e0a82082bd4067cbc2a4a5.tar.gz ChibiOS-Contrib-c523fa6f7aa0e64600e0a82082bd4067cbc2a4a5.tar.bz2 ChibiOS-Contrib-c523fa6f7aa0e64600e0a82082bd4067cbc2a4a5.zip |
[KINETIS] Moved time variable definition in blinker thread
Diffstat (limited to 'testhal/KINETIS')
-rw-r--r-- | testhal/KINETIS/FRDM-K20D50M/USB_SERIAL/main.c | 4 | ||||
-rw-r--r-- | testhal/KINETIS/FRDM-KL25Z/USB_SERIAL/main.c | 4 |
2 files changed, 4 insertions, 4 deletions
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);
|