Home
last modified time | relevance | path

Searched refs:uart_ctrl_t (Results 1 – 6 of 6) sorted by relevance

/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/inc/api/
H A Dr_uart_api.h167 typedef void uart_ctrl_t; typedef
181 fsp_err_t (* open)(uart_ctrl_t * const p_ctrl, uart_cfg_t const * const p_cfg);
195 fsp_err_t (* read)(uart_ctrl_t * const p_ctrl, uint8_t * const p_dest, uint32_t const bytes);
209 …fsp_err_t (* write)(uart_ctrl_t * const p_ctrl, uint8_t const * const p_src, uint32_t const bytes);
222 fsp_err_t (* baudSet)(uart_ctrl_t * const p_ctrl, void const * const p_baudrate_info);
232 fsp_err_t (* infoGet)(uart_ctrl_t * const p_ctrl, uart_info_t * const p_info);
243 fsp_err_t (* communicationAbort)(uart_ctrl_t * const p_ctrl, uart_dir_t communication_to_abort);
257 …fsp_err_t (* callbackSet)(uart_ctrl_t * const p_api_ctrl, void (* p_callback)(uart_callback_args_t…
267 fsp_err_t (* close)(uart_ctrl_t * const p_ctrl);
277 fsp_err_t (* readStop)(uart_ctrl_t * const p_ctrl, uint32_t * remaining_bytes);
[all …]
/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/ssp/src/driver/r_sci_uart/
H A Dr_sci_uart_private_api.h29 ssp_err_t R_SCI_UartOpen (uart_ctrl_t * const p_ctrl, uart_cfg_t const * const p_cfg);
30 ssp_err_t R_SCI_UartRead (uart_ctrl_t * const p_ctrl, uint8_t const * const p_dest, uint32_t …
31 ssp_err_t R_SCI_UartWrite (uart_ctrl_t * const p_ctrl, uint8_t const * const p_src, uint32_t c…
32 ssp_err_t R_SCI_UartBaudSet (uart_ctrl_t * const p_ctrl, uint32_t const baudrate);
33 ssp_err_t R_SCI_UartInfoGet (uart_ctrl_t * const p_ctrl, uart_info_t * const p_info);
34 ssp_err_t R_SCI_UartClose (uart_ctrl_t * const p_ctrl);
36 ssp_err_t R_SCI_UartAbort (uart_ctrl_t * const p_ctrl, uart_dir_t communication_to_abort);
H A Dr_sci_uart.c279 ssp_err_t R_SCI_UartOpen (uart_ctrl_t * const p_api_ctrl, in R_SCI_UartOpen()
422 ssp_err_t R_SCI_UartClose (uart_ctrl_t * const p_api_ctrl) in R_SCI_UartClose()
494 ssp_err_t R_SCI_UartRead (uart_ctrl_t * const p_api_ctrl, in R_SCI_UartRead()
558 ssp_err_t R_SCI_UartWrite (uart_ctrl_t * const p_api_ctrl, in R_SCI_UartWrite()
638 ssp_err_t R_SCI_UartBaudSet (uart_ctrl_t * const p_api_ctrl, in R_SCI_UartBaudSet()
688 ssp_err_t R_SCI_UartInfoGet (uart_ctrl_t * const p_api_ctrl, in R_SCI_UartInfoGet()
768 ssp_err_t R_SCI_UartAbort (uart_ctrl_t * const p_api_ctrl, uart_dir_t communication_to_abort) in R_SCI_UartAbort()
/btstack/port/renesas-tb-s1ja-cc256x/template/btstack_example/synergy/ssp/inc/driver/api/
H A Dr_uart_api.h192 typedef void uart_ctrl_t; typedef
205 ssp_err_t (* open)(uart_ctrl_t * const p_ctrl,
221 ssp_err_t (* read)(uart_ctrl_t * const p_ctrl,
236 ssp_err_t (* write)(uart_ctrl_t * const p_ctrl,
250 ssp_err_t (* baudSet)(uart_ctrl_t * const p_ctrl,
260 ssp_err_t (* infoGet)(uart_ctrl_t * const p_ctrl,
269 ssp_err_t (* close)(uart_ctrl_t * const p_ctrl);
287 … ssp_err_t (* communicationAbort)(uart_ctrl_t * const p_ctrl, uart_dir_t communication_to_abort);
293 uart_ctrl_t * p_ctrl; ///< Pointer to the control structure for this instance
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/inc/instances/
H A Dr_sci_uart.h203 fsp_err_t R_SCI_UART_Open(uart_ctrl_t * const p_api_ctrl, uart_cfg_t const * const p_cfg);
204 fsp_err_t R_SCI_UART_Read(uart_ctrl_t * const p_api_ctrl, uint8_t * const p_dest, uint32_t const by…
205 fsp_err_t R_SCI_UART_Write(uart_ctrl_t * const p_api_ctrl, uint8_t const * const p_src, uint32_t co…
206 fsp_err_t R_SCI_UART_BaudSet(uart_ctrl_t * const p_api_ctrl, void const * const p_baud_setting);
207 fsp_err_t R_SCI_UART_InfoGet(uart_ctrl_t * const p_api_ctrl, uart_info_t * const p_info);
208 fsp_err_t R_SCI_UART_Close(uart_ctrl_t * const p_api_ctrl);
209 fsp_err_t R_SCI_UART_Abort(uart_ctrl_t * const p_api_ctrl, uart_dir_t communication_to_abort);
214 fsp_err_t R_SCI_UART_CallbackSet(uart_ctrl_t * const p_api_ctrl,
218 fsp_err_t R_SCI_UART_ReadStop(uart_ctrl_t * const p_api_ctrl, uint32_t * remaining_bytes);
/btstack/port/renesas-ek-ra6m4a-da14531/e2-project/ra/fsp/src/r_sci_uart/
H A Dr_sci_uart.c313 fsp_err_t R_SCI_UART_Open (uart_ctrl_t * const p_api_ctrl, uart_cfg_t const * const p_cfg) in R_SCI_UART_Open()
470 fsp_err_t R_SCI_UART_Close (uart_ctrl_t * const p_api_ctrl) in R_SCI_UART_Close()
529 fsp_err_t R_SCI_UART_Read (uart_ctrl_t * const p_api_ctrl, uint8_t * const p_dest, uint32_t const b… in R_SCI_UART_Read()
590 fsp_err_t R_SCI_UART_Write (uart_ctrl_t * const p_api_ctrl, uint8_t const * const p_src, uint32_t c… in R_SCI_UART_Write()
700 fsp_err_t R_SCI_UART_CallbackSet (uart_ctrl_t * const p_api_ctrl, in R_SCI_UART_CallbackSet()
752 fsp_err_t R_SCI_UART_BaudSet (uart_ctrl_t * const p_api_ctrl, void const * const p_baud_setting) in R_SCI_UART_BaudSet()
789 fsp_err_t R_SCI_UART_InfoGet (uart_ctrl_t * const p_api_ctrl, uart_info_t * const p_info) in R_SCI_UART_InfoGet()
846 fsp_err_t R_SCI_UART_Abort (uart_ctrl_t * const p_api_ctrl, uart_dir_t communication_to_abort) in R_SCI_UART_Abort()
931 fsp_err_t R_SCI_UART_ReadStop (uart_ctrl_t * const p_api_ctrl, uint32_t * remaining_bytes) in R_SCI_UART_ReadStop()