[stm32f429i-discovery] Moved Chucks remaining examples to the correct directory.

Additionally added Chucks readme to the stm32f429i-discovery board
readme.
This commit is contained in:
Piotr Esden-Tempski
2015-01-22 18:38:16 -08:00
parent 86c42bc2dd
commit d29e4d2b7c
30 changed files with 39 additions and 75 deletions

View File

@@ -0,0 +1,13 @@
/*
* Our simple console definitions
*/
void console_putc(char c);
char console_getc(int wait);
void console_puts(char *s);
int console_gets(char *s, int len);
void console_setup(void);
/* this is for fun, if you type ^C to this example it will reset */
#define RESET_ON_CTRLC