Merge branch 'feature/mcpwm_capture_on_both_edge' into 'master'

MCPWM: add an option to do mcpwm capture on both edges

See merge request espressif/esp-idf!9850
pull/5778/head
Michael (XIAO Xufeng) 2020-08-10 11:48:50 +08:00
commit cda9c595d7
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -81,6 +81,7 @@ typedef enum {
* @brief MCPWM select capture starts from which edge
*/
typedef enum {
MCPWM_NEG_EDGE = BIT(0), /*!<Capture the negative edge*/
MCPWM_POS_EDGE = BIT(1), /*!<Capture the positive edge*/
MCPWM_NEG_EDGE = BIT(0), /*!<Capture the negative edge*/
MCPWM_POS_EDGE = BIT(1), /*!<Capture the positive edge*/
MCPWM_BOTH_EDGE = BIT(1)|BIT(0), /*!<Capture both edges*/
} mcpwm_capture_on_edge_t;