Some examples for the STM32F4-Disco board
This commit is contained in:
committed by
Piotr Esden-Tempski
parent
2583cc54cc
commit
e5585dd07d
13
examples/stm32/f4/stm32f4-disco/sdram/console.h
Normal file
13
examples/stm32/f4/stm32f4-disco/sdram/console.h
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user