hal_data.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* generated HAL header file - do not edit */
  2. #ifndef HAL_DATA_H_
  3. #define HAL_DATA_H_
  4. #include <stdint.h>
  5. #include "bsp_api.h"
  6. #include "common_data.h"
  7. #include "r_icu.h"
  8. #include "r_external_irq_api.h"
  9. #include "r_sci_uart.h"
  10. #include "r_uart_api.h"
  11. FSP_HEADER
  12. /** External IRQ on ICU Instance. */
  13. extern const external_irq_instance_t g_external_irq3;
  14. /** Access the ICU instance using these structures when calling API functions directly (::p_api is not used). */
  15. extern icu_instance_ctrl_t g_external_irq3_ctrl;
  16. extern const external_irq_cfg_t g_external_irq3_cfg;
  17. #ifndef irq_callback
  18. void irq_callback(external_irq_callback_args_t * p_args);
  19. #endif
  20. /** UART on SCI Instance. */
  21. extern const uart_instance_t g_uart9;
  22. /** Access the UART instance using these structures when calling API functions directly (::p_api is not used). */
  23. extern sci_uart_instance_ctrl_t g_uart9_ctrl;
  24. extern const uart_cfg_t g_uart9_cfg;
  25. extern const sci_uart_extended_cfg_t g_uart9_cfg_extend;
  26. #ifndef user_uart9_callback
  27. void user_uart9_callback(uart_callback_args_t * p_args);
  28. #endif
  29. void hal_entry(void);
  30. void g_hal_init(void);
  31. FSP_FOOTER
  32. #endif /* HAL_DATA_H_ */