Files
BoilerControlUnit_Firmware/autogen/sl_uartdrv_instances.h
GClarkson 9d06f983af Imported more library files
Not compiling currently
2025-04-12 23:37:19 +01:00

37 lines
955 B
C

#ifndef SL_UARTDRV_INSTANCES_H
#define SL_UARTDRV_INSTANCES_H
#ifdef __cplusplus
extern "C" {
#endif
#include "sl_status.h"
#include "uartdrv.h"
extern UARTDRV_Handle_t sl_uartdrv_eusart_vcom_handle;
void sl_uartdrv_init_instances(void);
/***************************************************************************//**
* Set the handle as the default UARTDRV handle.
*
* @param[in] handle UARTDRV handle to set as default.
*
* @return Status result
******************************************************************************/
sl_status_t sl_uartdrv_set_default(UARTDRV_Handle_t handle);
/***************************************************************************//**
* Get the default UARTDRV handle configured.
*
* @return UARTDRV handle
******************************************************************************/
UARTDRV_Handle_t sl_uartdrv_get_default(void);
#ifdef __cplusplus
}
#endif
#endif // SL_UARTDRV_INSTANCES_H