Mercurial > ecos
view examples/hello.c @ 2866:124f0bf48ce8
* src/hal_diag.c (hal_stm32_serial_getc_timeout): Fix for higher
baudrates. The original version lost bytes due to the long
timeout.
| author | nickg |
|---|---|
| date | Fri, 17 Apr 2009 12:39:02 +0000 |
| parents | ead06911cbae |
| children |
line wrap: on
line source
/* this is a simple hello world program */ #include <stdio.h> int main(void) { printf("Hello, eCos world!\n"); return 0; }
