1234567891011121314151617181920212223242526 |
- /**
- * @file api_board_support.h
- * @author Xiao Lifan (xiaolf6@midea.com)
- * @brief
- * @version 0.1
- * @date 2022-05-10
- *
- * @copyright Copyright (c) 2022
- *
- * @details 控制器硬件定义文件,用于表明控制器硬件实际支持的硬件抽象
- *
- */
- #define API_SUPPORT 1
- #define API_NOSUPPORT 0
- #define API_FUNCTION_PWM_MULTI_COMPARE_VALUE API_SUPPORT
- #define API_FUNCTION_PWM_COUNTDOWN API_SUPPORT
- #define API_FUNCTION_PWM_CHANNEL_OUTPUT_CONTROL API_SUPPORT
- #define API_FUNCTION_PWM_COMPARE_TRIGGER API_SUPPORT
- #define API_FUNCTION_PWM_FORCE_OUTPUT API_SUPPORT
- #define API_FUNCTION_PWM_SYNC_MULTI_SAMPLING API_SUPPORT
- #define API_FUNCTION_ADC_HARDWARE_TRIGGER API_SUPPORT
- #define API_FUNCTION_UART_ASYNC API_SUPPORT
|