Add uart signatures to header for cleanliness

pull/714/head
Mattia Moffa 2026-03-14 03:25:30 +01:00 committed by Daniele Lacamera
parent d716c4de9a
commit a916a73979
1 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,12 @@
#include <string.h>
void uart_write_device(int device, const char* buf, unsigned int sz);
void uart_write(const char* buf, unsigned int sz);
#if (UART_FLASH)
int uart_init(uint32_t bitrate, uint8_t data, char parity, uint8_t stop);
#else
void uart_init(void);
#endif
#if !defined(TZEN) || !defined(NONSECURE_APP)