2023-04-19 14:01:34 +08:00
|
|
|
/* 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"
|
2023-11-01 06:07:46 +08:00
|
|
|
#include "r_gpt.h"
|
|
|
|
#include "r_timer_api.h"
|
2023-04-19 14:01:34 +08:00
|
|
|
#include "r_sci_uart.h"
|
|
|
|
#include "r_uart_api.h"
|
2023-11-01 06:07:46 +08:00
|
|
|
#include "r_adc.h"
|
|
|
|
#include "r_adc_api.h"
|
2023-04-19 14:01:34 +08:00
|
|
|
FSP_HEADER
|
2023-11-01 06:07:46 +08:00
|
|
|
/** Timer on GPT Instance. */
|
|
|
|
extern const timer_instance_t g_timer2;
|
|
|
|
|
|
|
|
/** Access the GPT instance using these structures when calling API functions directly (::p_api is not used). */
|
|
|
|
extern gpt_instance_ctrl_t g_timer2_ctrl;
|
|
|
|
extern const timer_cfg_t g_timer2_cfg;
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
void NULL(timer_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
|
|
|
|
/** ADC on ADC Instance. */
|
|
|
|
extern const adc_instance_t g_adc0;
|
|
|
|
|
|
|
|
/** Access the ADC instance using these structures when calling API functions directly (::p_api is not used). */
|
|
|
|
extern adc_instance_ctrl_t g_adc0_ctrl;
|
|
|
|
extern const adc_cfg_t g_adc0_cfg;
|
|
|
|
extern const adc_channel_cfg_t g_adc0_channel_cfg;
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
void NULL(adc_callback_args_t * p_args);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
#define ADC_DMAC_CHANNELS_PER_BLOCK_NULL 7
|
|
|
|
#endif
|
2023-04-19 14:01:34 +08:00
|
|
|
/** UART on SCI Instance. */
|
|
|
|
extern const uart_instance_t g_uart9;
|
|
|
|
|
|
|
|
/** Access the UART instance using these structures when calling API functions directly (::p_api is not used). */
|
|
|
|
extern sci_uart_instance_ctrl_t g_uart9_ctrl;
|
|
|
|
extern const uart_cfg_t g_uart9_cfg;
|
|
|
|
extern const sci_uart_extended_cfg_t g_uart9_cfg_extend;
|
|
|
|
|
|
|
|
#ifndef user_uart9_callback
|
|
|
|
void user_uart9_callback(uart_callback_args_t * p_args);
|
|
|
|
#endif
|
|
|
|
void hal_entry(void);
|
|
|
|
void g_hal_init(void);
|
|
|
|
FSP_FOOTER
|
|
|
|
#endif /* HAL_DATA_H_ */
|