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

@@ -458,8 +458,8 @@ ets_get_xtal_freq = 0x40001a7c;
gpio_input_get = 0x40001a88;
gpio_matrix_in = 0x40001a94;
gpio_matrix_out = 0x40001aa0;
gpio_output_disable = 0x40001aac;
gpio_output_enable = 0x40001ab8;
/* gpio_output_disable = 0x40001aac; */
/* gpio_output_enable = 0x40001ab8; */
gpio_output_set = 0x40001ac4;
gpio_pad_hold = 0x40001ad0;
gpio_pad_input_disable = 0x40001adc;