Skip to content

Commit

Permalink
mcpwm: revert back to allow user register isr handler
Browse files Browse the repository at this point in the history
Closes #7890
  • Loading branch information
suda-morris committed Nov 16, 2021
1 parent 35b20ca commit e6ee8b2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions components/driver/include/driver/mcpwm.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ typedef enum {
/**
* @brief Interrupt masks for MCPWM capture
*/
__attribute__ ((deprecated("please use callback function to avoid directly accessing registers")))
typedef enum {
MCPWM_LL_INTR_CAP0 = BIT(27), ///< Capture 0 happened
MCPWM_LL_INTR_CAP1 = BIT(28), ///< Capture 1 happened
Expand Down Expand Up @@ -922,7 +921,6 @@ esp_err_t mcpwm_sync_invert_gpio_synchro(mcpwm_unit_t mcpwm_num, mcpwm_sync_sign
* - ESP_OK Success
* - ESP_ERR_INVALID_ARG Function pointer error.
*/
__attribute__((deprecated("interrupt events are handled by driver, please use callback")))
esp_err_t mcpwm_isr_register(mcpwm_unit_t mcpwm_num, void (*fn)(void *), void *arg, int intr_alloc_flags,
intr_handle_t *handle);

Expand Down

0 comments on commit e6ee8b2

Please sign in to comment.