We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37cd624 + 14a6b1d commit cda9c59Copy full SHA for cda9c59
components/soc/include/hal/mcpwm_types.h
@@ -81,6 +81,7 @@ typedef enum {
81
* @brief MCPWM select capture starts from which edge
82
*/
83
typedef enum {
84
- MCPWM_NEG_EDGE = BIT(0), /*!<Capture the negative edge*/
85
- 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*/
86
+ MCPWM_BOTH_EDGE = BIT(1)|BIT(0), /*!<Capture both edges*/
87
} mcpwm_capture_on_edge_t;
0 commit comments