Improved demo.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7384 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2014-10-07 12:58:29 +00:00
parent 8920d3403c
commit 366ed30eea
1 changed files with 2 additions and 1 deletions

View File

@ -62,8 +62,9 @@ int main(void) {
osKernelStart();
/* In the ChibiOS/RT CMSIS RTOS implementation the main() is an
usable thread.*/
usable thread, here we just sleep in a loop printing a message.*/
while (TRUE) {
sdWrite(&SD2, (uint8_t *)"Hello World!\r\n", 14);
osDelay(500);
}
}