mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-17 16:14:15 +00:00
63 lines
2.0 KiB
C
63 lines
2.0 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_flash_hp.h"
|
||
|
#include "r_flash_api.h"
|
||
|
#include "r_gpt.h"
|
||
|
#include "r_timer_api.h"
|
||
|
#include "r_dtc.h"
|
||
|
#include "r_transfer_api.h"
|
||
|
#include "r_sci_uart.h"
|
||
|
#include "r_uart_api.h"
|
||
|
FSP_HEADER
|
||
|
/* Flash on Flash HP Instance */
|
||
|
extern const flash_instance_t g_flash0;
|
||
|
|
||
|
/** Access the Flash HP instance using these structures when calling API functions directly (::p_api is not used). */
|
||
|
extern flash_hp_instance_ctrl_t g_flash0_ctrl;
|
||
|
extern const flash_cfg_t g_flash0_cfg;
|
||
|
|
||
|
#ifndef NULL
|
||
|
void NULL(flash_callback_args_t *p_args);
|
||
|
#endif
|
||
|
/** Timer on GPT Instance. */
|
||
|
extern const timer_instance_t g_timer0;
|
||
|
|
||
|
/** Access the GPT instance using these structures when calling API functions directly (::p_api is not used). */
|
||
|
extern gpt_instance_ctrl_t g_timer0_ctrl;
|
||
|
extern const timer_cfg_t g_timer0_cfg;
|
||
|
|
||
|
#ifndef time_1ms
|
||
|
void timer_1ms(timer_callback_args_t *p_args);
|
||
|
#endif
|
||
|
/* 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;
|
||
|
/** 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_uart_callback
|
||
|
void user_uart_callback(uart_callback_args_t *p_args);
|
||
|
#endif
|
||
|
void hal_entry(void);
|
||
|
void g_hal_init(void);
|
||
|
FSP_FOOTER
|
||
|
#endif /* HAL_DATA_H_ */
|