Mercurial > ecos
view examples/hello.c @ 2970:b479691ea40f
* src/usbs.c, include/usbs.h: Extend usbs_control_endpoint struct and
provide usbs_get_*_endpoint() functions to facilitate dynamic data
endpoint configuration. Contributed by Chris Holgate. [ Bugzilla 1001024]
* doc/usbs.sgml: Document the above changes.
* cdl/usbs.cdl: Fix erroneous CYGPKG_IO_USB_SLAVE_TESTS display string.
| author | jld |
|---|---|
| date | Wed, 27 Oct 2010 10:04:33 +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; }
