change(esp_rom): comment out conflict gpio functions

The GPIO function names has conflict with the public API used by
esp_driver_gpio component.

For now, we simply comment out the conflict ones.

Later, we should consider reusing the GPIO rom APIs.
This commit is contained in:
morris
2024-10-10 15:56:55 +08:00
parent 611fb654ce
commit d6ac628f7a
9 changed files with 18 additions and 18 deletions

View File

@@ -238,8 +238,8 @@ ets_clk_mspi_apb_wait_ready = 0x400006d0;
gpio_input_get = 0x400006d4;
gpio_matrix_in = 0x400006d8;
gpio_matrix_out = 0x400006dc;
gpio_output_disable = 0x400006e0;
gpio_output_enable = 0x400006e4;
/* gpio_output_disable = 0x400006e0; */
/* gpio_output_enable = 0x400006e4; */
gpio_output_set = 0x400006e8;
gpio_pad_hold = 0x400006ec;
gpio_pad_input_disable = 0x400006f0;