refactor(cp_dma): to use gdma_link driver for descriptor config

This commit is contained in:
morris
2024-12-02 17:39:37 +08:00
parent 1b44d4df3b
commit 364bbbde68
3 changed files with 88 additions and 112 deletions
@@ -91,7 +91,7 @@ esp_err_t debug_probe_new_unit(const debug_probe_unit_config_t *config, debug_pr
}
// reserve the GPIO output path, because we don't expect another peripheral to signal to the same GPIO
uint64_t old_gpio_rsv_mask = esp_gpio_reserve(pin_bit_mask);
// check if the GPIO is already used by others, RMT TX channel only uses the output path of the GPIO
// check if the GPIO is already used by others
if (old_gpio_rsv_mask & pin_bit_mask) {
ESP_LOGW(TAG, "GPIO conflict with others");
}