aboutsummaryrefslogtreecommitdiffstats
path: root/demos/AVR/RT-ARDUINO-MINI
diff options
context:
space:
mode:
authortfateba <tfateba@110e8d01-0319-4d1e-a829-52ad28d1bb01>2018-06-13 09:40:20 +0000
committertfateba <tfateba@110e8d01-0319-4d1e-a829-52ad28d1bb01>2018-06-13 09:40:20 +0000
commit70542995be139ee60405e3f810d16845a998ad88 (patch)
tree433003f3612a68c0f6fd49ab9a80e5a9dcd53096 /demos/AVR/RT-ARDUINO-MINI
parentfaa3f10780033c09bea25862b4c2c6f168b8f31e (diff)
downloadChibiOS-70542995be139ee60405e3f810d16845a998ad88.tar.gz
ChibiOS-70542995be139ee60405e3f810d16845a998ad88.tar.bz2
ChibiOS-70542995be139ee60405e3f810d16845a998ad88.zip
AVR: Update demo.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12094 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'demos/AVR/RT-ARDUINO-MINI')
-rw-r--r--demos/AVR/RT-ARDUINO-MINI/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/AVR/RT-ARDUINO-MINI/main.c b/demos/AVR/RT-ARDUINO-MINI/main.c
index 14a77d891..6ff7a525e 100644
--- a/demos/AVR/RT-ARDUINO-MINI/main.c
+++ b/demos/AVR/RT-ARDUINO-MINI/main.c
@@ -57,7 +57,8 @@ int main(void) {
chThdCreateStatic(waThread1, sizeof(waThread1), NORMALPRIO, Thread1, NULL);
chnWrite(&SD1, (const uint8_t *)"Hello World!\r\n", 14);
- while(TRUE) {
+
+ while (true) {
chThdSleepMilliseconds(1000);
}
}