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

@@ -366,8 +366,8 @@ ets_get_xtal_freq = 0x40000598;
gpio_input_get = 0x4000059c;
gpio_matrix_in = 0x400005a0;
gpio_matrix_out = 0x400005a4;
gpio_output_disable = 0x400005a8;
gpio_output_enable = 0x400005ac;
/* gpio_output_disable = 0x400005a8; */
/* gpio_output_enable = 0x400005ac; */
gpio_output_set = 0x400005b0;
gpio_pad_hold = 0x400005b4;
gpio_pad_input_disable = 0x400005b8;