view examples/hello.c @ 3299:99686efcd5ba

Optimised receiving of messages that fit in FIFO. Add clock gating. Fix race condition bug in dspi_transaction_end(). [ Bugzilla 1001815 ]
author vae
date Sun, 07 Apr 2013 16:33: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;
}