diff options
Diffstat (limited to 'demos/AVR/RT-ARDUINO-MEGA/main.c')
-rw-r--r-- | demos/AVR/RT-ARDUINO-MEGA/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/demos/AVR/RT-ARDUINO-MEGA/main.c b/demos/AVR/RT-ARDUINO-MEGA/main.c index fbfbbbae5..259b56750 100644 --- a/demos/AVR/RT-ARDUINO-MEGA/main.c +++ b/demos/AVR/RT-ARDUINO-MEGA/main.c @@ -17,6 +17,9 @@ #include "ch.h"
#include "hal.h"
+/*
+ * LED blinker thread, times are in milliseconds.
+ */
static THD_WORKING_AREA(waThread1, 32);
static THD_FUNCTION(Thread1, arg) {
|