diff options
Diffstat (limited to 'app/platform/stm32f0-gcc/uart.cpp')
-rw-r--r-- | app/platform/stm32f0-gcc/uart.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app/platform/stm32f0-gcc/uart.cpp b/app/platform/stm32f0-gcc/uart.cpp new file mode 100644 index 0000000..0fa6527 --- /dev/null +++ b/app/platform/stm32f0-gcc/uart.cpp @@ -0,0 +1,33 @@ +#include "uart.h" + +size_t UARTWrite(USART_TypeDef* uart, const void *data, size_t nbytes) +{ + if (uart == nullptr) return 0; + (void) data; + (void) nbytes; + return 0; +} + +size_t UARTWriteDirect(USART_TypeDef* uart, const void *data, size_t nbytes) +{ + if (uart == nullptr) return 0; + (void) data; + (void) nbytes; + return 0; +} + +size_t UARTRead(USART_TypeDef* uart, void *data, size_t nbytes) +{ + if (uart == nullptr) return 0; + (void) data; + (void) nbytes; + return 0; +} + +size_t UARTReadDirect(USART_TypeDef* uart, void *data, size_t nbytes) +{ + if (uart == nullptr) return 0; + (void) data; + (void) nbytes; + return 0; +} |