hal_data.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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_sci_uart.h"
  8. #include "r_uart_api.h"
  9. FSP_HEADER
  10. /** UART on SCI Instance. */
  11. extern const uart_instance_t g_uart4;
  12. /** Access the UART instance using these structures when calling API functions directly (::p_api is not used). */
  13. extern sci_uart_instance_ctrl_t g_uart4_ctrl;
  14. extern const uart_cfg_t g_uart4_cfg;
  15. extern const sci_uart_extended_cfg_t g_uart4_cfg_extend;
  16. #ifndef user_uart4_callback
  17. void user_uart4_callback(uart_callback_args_t * p_args);
  18. #endif
  19. /** UART on SCI Instance. */
  20. extern const uart_instance_t g_uart0;
  21. /** Access the UART instance using these structures when calling API functions directly (::p_api is not used). */
  22. extern sci_uart_instance_ctrl_t g_uart0_ctrl;
  23. extern const uart_cfg_t g_uart0_cfg;
  24. extern const sci_uart_extended_cfg_t g_uart0_cfg_extend;
  25. #ifndef user_uart0_callback
  26. void user_uart0_callback(uart_callback_args_t * p_args);
  27. #endif
  28. void hal_entry(void);
  29. void g_hal_init(void);
  30. FSP_FOOTER
  31. #endif /* HAL_DATA_H_ */