view examples/hello.c @ 3055:d72e3f7ef586

* src/spi_stm32.c: Add support for CYG_IO_GET_CONFIG_SPI_CLOCKRATE and CYG_IO_SET_CONFIG_SPI_CLOCKRATE (possibility to retrieve and to set the SPI clockrate).
author sergeig
date Mon, 03 Oct 2011 09:33:41 +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;
}