io_mux: can set different clock source

This commit is contained in:
morris
2022-12-16 15:37:02 +08:00
parent 8a095a74d4
commit 672ac58ad5
12 changed files with 179 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
/*
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#include "esp_private/io_mux.h"
esp_err_t io_mux_set_clock_source(soc_module_clk_t clk_src)
{
// IO MUX clock source is not selectable
return ESP_OK;
}