diff options
Diffstat (limited to 'demos/AVR/RT-ARDUINO-LEONARDO/main.c')
-rw-r--r-- | demos/AVR/RT-ARDUINO-LEONARDO/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/AVR/RT-ARDUINO-LEONARDO/main.c b/demos/AVR/RT-ARDUINO-LEONARDO/main.c index 4d3c03f42..7f770d392 100644 --- a/demos/AVR/RT-ARDUINO-LEONARDO/main.c +++ b/demos/AVR/RT-ARDUINO-LEONARDO/main.c @@ -70,7 +70,7 @@ int main(void) { */
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
- while(TRUE) {
+ while (TRUE) {
if (SDU1.config->usbp->state == USB_ACTIVE) {
chnWrite(&SDU1, (const uint8_t *)"Hello from Arduino Leonardo!\r\n", 30);
}
|