|
uc-sdk
|
#include "BoardConsole.h"#include <stdio.h>#include <malloc.h>#include <stdarg.h>#include <stm32f10x_gpio.h>#include <stm32f10x_rcc.h>#include <stm32f10x_usart.h>Go to the source code of this file.
Functions | |
| void | BoardConsoleInit () |
| void | BoardConsolePuts (const char *str) |
| void | BoardConsolePutc (int c) |
| void | BoardConsolePrintf (const char *fmt,...) |
| void | BoardConsoleVPrintf (const char *fmt, va_list ap) |
| void BoardConsoleInit | ( | ) |
Definition at line 10 of file BoardConsole.c.
| void BoardConsolePrintf | ( | const char * | fmt, |
| ... | |||
| ) |
Definition at line 58 of file BoardConsole.c.
| void BoardConsolePutc | ( | int | c) |
Definition at line 46 of file BoardConsole.c.
| void BoardConsolePuts | ( | const char * | str) |
Definition at line 40 of file BoardConsole.c.
| void BoardConsoleVPrintf | ( | const char * | fmt, |
| va_list | ap | ||
| ) |
Definition at line 70 of file BoardConsole.c.