Imported more library files

Not compiling currently
This commit is contained in:
2025-04-12 23:37:19 +01:00
parent 264a3462e0
commit 9d06f983af
2518 changed files with 1021900 additions and 52 deletions

View File

@@ -0,0 +1,32 @@
#ifndef _UART_H
#define _UART_H
#include <stdbool.h>
/**
* The size of the receive buffer
*
*/
#define RECEIVE_BUFFER_SIZE 128
/**
* This function initializes the UART interface.
*
*/
void efr32UartInit(void);
/**
* This function performs UART processing.
*
*/
void efr32UartProcess(void);
/**
* This function informs the caller whether UART
* operations are ready to process
*
* @return true if RX or TX data is ready to process.
*/
bool efr32UartIsDataReady(void);
#endif // _UART_H