Hi,
We are checking if it is possible to remap the ADC port from a pad to another gpio non ADC pad?
Like GPIO36, ADC1_CH0, RTC_GPIO0 from PAD 4 to another GPIO IO 3 PAD 34.
Please advise.
Search found 5 matches
- Sat Oct 09, 2021 5:02 am
- Forum: General Discussion
- Topic: Esp32 IOMUX GPIO ADC REMAP
- Replies: 1
- Views: 1935
- Thu Oct 31, 2019 6:46 pm
- Forum: ESP-IDF
- Topic: Change Partition Subtype during runtime
- Replies: 10
- Views: 15072
Re: Change Partition Subtype during runtime
We managed to successfuly update our partition table on deployed devices. The end goal was to remove the default factory partition to allow us to increase the size of the OTA partitions as our application is nearing the 1MB limit. This was facilitated by our application and supporting infrastructur...
- Thu Oct 31, 2019 6:39 pm
- Forum: General Discussion
- Topic: ESP32: Partition Table Update through OTA
- Replies: 13
- Views: 35409
Re: ESP32: Partition Table Update through OTA
Hello, I just wanted to share my findings about this topic of updating partition table through OTA, for future users who fight this. I faced this problem because we wanted to change partition table from FACTORY+OTA to OTA0+OTA1, plus we wanted to expand NVS partition size. We got several devices al...
- Thu Jun 20, 2019 2:46 am
- Forum: ESP-IDF
- Topic: High Level Interrupt on external GPIO Interrupt
- Replies: 15
- Views: 21678
Re: High Level Interrupt on external GPIO Interrupt
Before the two last lines that return from the interrupt, can you try adding this? l32r a14, .GPIO_STATUS_REG l32i a14, a14, 0 memw The idea is that the interrupt acknowledge may be 'stuck' in a load/store unit of the CPU or somewhere in a peripheral, and hasn't properly executed yet before the int...
- Wed Mar 06, 2019 5:46 pm
- Forum: ESP-IDF
- Topic: How Invert a GPIO port state ?
- Replies: 1
- Views: 3756
How Invert a GPIO port state ?
Hi,
In an output gpio that was set to a high state, how can I read later if it is High or Low?
Reading the code of gpio_get_level do not work on output, so, how we can now if a gpio output is in high or low state?
In an output gpio that was set to a high state, how can I read later if it is High or Low?
Reading the code of gpio_get_level do not work on output, so, how we can now if a gpio output is in high or low state?