Merge branch 'feature/ledc_etm_support' into 'master'

feat(ledc): add ETM support for LEDC peripheral

Closes IDF-6355, IDFGH-10620, IDFGH-16378, and IDF-10683

See merge request espressif/esp-idf!41543
This commit is contained in:
Song Ruo Jing
2025-10-27 18:28:20 +08:00
52 changed files with 2097 additions and 26 deletions

View File

@@ -397,6 +397,7 @@ static inline esp_err_t _uart_set_pin4(uart_port_t uart_num, int tx_io_num, int
// Error function for invalid argument count
static inline esp_err_t __uart_set_pin_invalid_args__(int dummy, ...)
{
(void)dummy;
ESP_RETURN_ON_FALSE(false, ESP_FAIL, "uart", "Invalid number of arguments to uart_set_pin(). Expected 5 or 7 arguments.");
return ESP_OK;
}