Skip to content

Commit

Permalink
fix(mcpwm): reset GPIO used by generator after delete
Browse files Browse the repository at this point in the history
Closes #12980
  • Loading branch information
suda-morris committed Feb 1, 2024
1 parent 4ecc978 commit d4db160
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/driver/mcpwm/Kconfig.mcpwm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ menu "MCPWM Configuration"
Enabling this option can improve driver performance as well.

config MCPWM_SUPPRESS_DEPRECATE_WARN
bool "Suppress leagcy driver deprecated warning"
bool "Suppress legacy driver deprecated warning"
default n
help
Wether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).
Expand Down
4 changes: 3 additions & 1 deletion components/driver/mcpwm/mcpwm_gen.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
Expand Down Expand Up @@ -118,6 +118,8 @@ esp_err_t mcpwm_del_generator(mcpwm_gen_handle_t gen)
mcpwm_group_t *group = oper->group;

ESP_LOGD(TAG, "del generator (%d,%d,%d)", group->group_id, oper->oper_id, gen->gen_id);
// reset GPIO
gpio_reset_pin(gen->gen_gpio_num);
// recycle memory resource
ESP_RETURN_ON_ERROR(mcpwm_generator_destroy(gen), TAG, "destroy generator failed");
return ESP_OK;
Expand Down

0 comments on commit d4db160

Please sign in to comment.