api_board_support.h 771 B

1234567891011121314151617181920212223242526
  1. /**
  2. * @file api_board_support.h
  3. * @author Xiao Lifan (xiaolf6@midea.com)
  4. * @brief
  5. * @version 0.1
  6. * @date 2022-05-10
  7. *
  8. * @copyright Copyright (c) 2022
  9. *
  10. * @details 控制器硬件定义文件,用于表明控制器硬件实际支持的硬件抽象
  11. *
  12. */
  13. #define API_SUPPORT 1
  14. #define API_NOSUPPORT 0
  15. #define API_FUNCTION_PWM_MULTI_COMPARE_VALUE API_SUPPORT
  16. #define API_FUNCTION_PWM_COUNTDOWN API_SUPPORT
  17. #define API_FUNCTION_PWM_CHANNEL_OUTPUT_CONTROL API_SUPPORT
  18. #define API_FUNCTION_PWM_COMPARE_TRIGGER API_SUPPORT
  19. #define API_FUNCTION_PWM_FORCE_OUTPUT API_SUPPORT
  20. #define API_FUNCTION_PWM_SYNC_MULTI_SAMPLING API_SUPPORT
  21. #define API_FUNCTION_ADC_HARDWARE_TRIGGER API_SUPPORT
  22. #define API_FUNCTION_UART_ASYNC API_SUPPORT