Dependencies: LCD_DISCO_F429ZI mbed BSP_DISCO_F429ZI
Diff: uart.h
- Revision:
- 2:7dc265489818
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uart.h Sun Jun 14 11:13:56 2020 +0000 @@ -0,0 +1,11 @@ +#ifndef UART_H +#define UART_H + +class Uart { + public: + unsigned int puts (char *pcCharTab, unsigned int uiCharTabSize); + unsigned int gets (char *pcRecCharTab, unsigned int uiRecCharTabSize); + +}; + +#endif