Mercurial > ecos
view examples/hello.c @ 3272:a99daf62e693
Redefine CYGNUM_HAL_INTERRUPT_RTC_RTC because of
conflict with same named macro defined in hal_intr.h (Cortex-M architecture).
Define some interrrupt numbers, previously reservrd.
Upgrade RTC registers. [ Bugzilla 1001904 ]
| author | vae |
|---|---|
| date | Fri, 20 Sep 2013 20:53:37 +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; }
