uart_table.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef __UART_TABLE_H
  2. #define __UART_TABLE_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __UART_TABLE_H_GLOBAL
  7. #define __UART_TABLE_H_EXTERN
  8. #else
  9. #define __UART_TABLE_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. #include "uart_interface.h"
  24. #include <stdint.h>
  25. /************************************************************************************************
  26. * Defines *
  27. ************************************************************************************************/
  28. /************************************************************************************************
  29. * Typedefs *
  30. ************************************************************************************************/
  31. typedef struct
  32. {
  33. uint16_t addr;
  34. void (*p_func)(uint8_t memoft, uint8_t *data, uint8_t *read_bytes);
  35. } regist_read_type;
  36. /************************************************************************************************
  37. * Interfaces *
  38. ************************************************************************************************/
  39. uint8_t get_regist_value(uart_type *p_data, uint8_t mem_start_addr, uint8_t read_len);
  40. uint8_t set_regist_value(uart_type *p_data, uint8_t mem_start_addr, uint8_t read_len);
  41. #ifdef __cplusplus
  42. };
  43. #endif
  44. #endif // __UART_TABLE_H