63 lines
2.4 KiB
C
63 lines
2.4 KiB
C
/* generated HAL header file - do not edit */
|
|
#ifndef HAL_DATA_H_
|
|
#define HAL_DATA_H_
|
|
#include <stdint.h>
|
|
#include "bsp_api.h"
|
|
#include "common_data.h"
|
|
#include "r_dtc.h"
|
|
#include "r_transfer_api.h"
|
|
#include "r_sci_spi.h"
|
|
#include "r_spi_api.h"
|
|
#include "r_sci_uart.h"
|
|
#include "r_uart_api.h"
|
|
FSP_HEADER
|
|
/* Transfer on DTC Instance. */
|
|
extern const transfer_instance_t g_transfer1;
|
|
|
|
/** Access the DTC instance using these structures when calling API functions directly (::p_api is not used). */
|
|
extern dtc_instance_ctrl_t g_transfer1_ctrl;
|
|
extern const transfer_cfg_t g_transfer1_cfg;
|
|
/* Transfer on DTC Instance. */
|
|
extern const transfer_instance_t g_transfer0;
|
|
|
|
/** Access the DTC instance using these structures when calling API functions directly (::p_api is not used). */
|
|
extern dtc_instance_ctrl_t g_transfer0_ctrl;
|
|
extern const transfer_cfg_t g_transfer0_cfg;
|
|
/** SPI on SCI Instance. */
|
|
extern const spi_instance_t g_sci_spi9;
|
|
|
|
/** Access the SCI_SPI instance using these structures when calling API functions directly (::p_api is not used). */
|
|
extern sci_spi_instance_ctrl_t g_sci_spi9_ctrl;
|
|
extern const spi_cfg_t g_sci_spi9_cfg;
|
|
|
|
/** Called by the driver when a transfer has completed or an error has occurred (Must be implemented by the user). */
|
|
#ifndef sci_spi9_callback
|
|
void sci_spi9_callback(spi_callback_args_t * p_args);
|
|
#endif
|
|
/** UART on SCI Instance. */
|
|
extern const uart_instance_t g_uart4;
|
|
|
|
/** Access the UART instance using these structures when calling API functions directly (::p_api is not used). */
|
|
extern sci_uart_instance_ctrl_t g_uart4_ctrl;
|
|
extern const uart_cfg_t g_uart4_cfg;
|
|
extern const sci_uart_extended_cfg_t g_uart4_cfg_extend;
|
|
|
|
#ifndef user_uart4_callback
|
|
void user_uart4_callback(uart_callback_args_t * p_args);
|
|
#endif
|
|
/** UART on SCI Instance. */
|
|
extern const uart_instance_t g_uart0;
|
|
|
|
/** Access the UART instance using these structures when calling API functions directly (::p_api is not used). */
|
|
extern sci_uart_instance_ctrl_t g_uart0_ctrl;
|
|
extern const uart_cfg_t g_uart0_cfg;
|
|
extern const sci_uart_extended_cfg_t g_uart0_cfg_extend;
|
|
|
|
#ifndef user_uart0_callback
|
|
void user_uart0_callback(uart_callback_args_t * p_args);
|
|
#endif
|
|
void hal_entry(void);
|
|
void g_hal_init(void);
|
|
FSP_FOOTER
|
|
#endif /* HAL_DATA_H_ */
|