| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* 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_xspi_hyper.h"
- #include "r_hyperbus_api.h"
- #include "r_xspi_qspi.h"
- #include "r_spi_flash_api.h"
- #include "r_sci_uart.h"
- #include "r_uart_api.h"
- FSP_HEADER
- extern const hyperbus_instance_t g_hyperbus0;
- extern xspi_hyper_instance_ctrl_t g_hyperbus0_ctrl;
- extern const hyperbus_cfg_t g_hyperbus0_cfg;
- extern const spi_flash_instance_t g_qspi0;
- extern xspi_qspi_instance_ctrl_t g_qspi0_ctrl;
- extern const spi_flash_cfg_t g_qspi0_cfg;
- /** 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
- #define FSP_NOT_DEFINED (1)
- #if (FSP_NOT_DEFINED == FSP_NOT_DEFINED)
- #define g_uart0_P_TRANSFER_TX (NULL)
- #else
- #define g_uart0_P_TRANSFER_TX (&FSP_NOT_DEFINED)
- #endif
- #if (FSP_NOT_DEFINED == FSP_NOT_DEFINED)
- #define g_uart0_P_TRANSFER_RX (NULL)
- #else
- #define g_uart0_P_TRANSFER_RX (&FSP_NOT_DEFINED)
- #endif
- #undef FSP_NOT_DEFINED
- void hal_entry(void);
- void g_hal_init(void);
- FSP_FOOTER
- #endif /* HAL_DATA_H_ */
|