Search found 8 matches
- Sun Dec 24, 2023 4:40 pm
- Forum: ESP32 Arduino
- Topic: Files put with Arduino 1.8 not seen in Arduino 2.X
- Replies: 1
- Views: 1869
Files put with Arduino 1.8 not seen in Arduino 2.X
Hello, I have an ESP32. I put files, directories, with arduino 1.8 using Esp32 sketch data upload. The structure is: / /static /static/components Files in / folder are seen with Arduino 2.x, files in /static are seen too, but files in /static/components arent. Any body can help me to solve this issu...
- Mon Jul 17, 2023 9:13 pm
- Forum: ESP32 Arduino
- Topic: Custom partition not following the csv file
- Replies: 1
- Views: 991
Custom partition not following the csv file
Hello, I have an esp32 with 8 mo. I do a csv partition file like that: # Name, Type, SubType, Offset, Size, Flags nvs, data, nvs, 0x9000, 0x24000 otadata, data, ota, 0x2D000, 0x2000 app0, app, ota_0, 0x30000, 0x3A0000 app1, app, ota_1, 0x3D0000, 0x3A0000 As you can see ther is no core dump partition...
- Mon May 29, 2023 1:27 pm
- Forum: ESP32 Arduino
- Topic: soc version needed for analog read linearisation
- Replies: 3
- Views: 1832
soc version needed for analog read linearisation
Hello, I see a code on internet to correct the ADC. This code need to know wich version of ESP32 is used. The part of code is: //ADC Calibration #if CONFIG_IDF_TARGET_ESP32 #define ADC_EXAMPLE_CALI_SCHEME ESP_ADC_CAL_VAL_EFUSE_VREF #elif CONFIG_IDF_TARGET_ESP32S2 #define ADC_EXAMPLE_CALI_SCHEME ESP_...
- Wed Mar 22, 2023 4:33 pm
- Forum: ESP32 Arduino
- Topic: from static address to dhcp
- Replies: 1
- Views: 1261
Re: from static address to dhcp
no response.... not good..
I try to solve the issue by starting the dhcp with:
uint32_t error = tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA);
the result error is: E (9907) event: invalid static ip
any suggestions ?
I try to solve the issue by starting the dhcp with:
uint32_t error = tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA);
the result error is: E (9907) event: invalid static ip
any suggestions ?
- Fri Mar 10, 2023 6:17 pm
- Forum: ESP32 Arduino
- Topic: from static address to dhcp
- Replies: 1
- Views: 1261
from static address to dhcp
Hello, I have a software that store different wifi conifguration. Some are with dhcp other not. The software try all configs with criterias. When the esp try a config with fixed address and the next is with dhcp, the esp try to connect with the precedent ip. How to forget the precedent ip ? Basicaly...
- Sun Apr 15, 2018 1:38 am
- Forum: Report Bugs
- Topic: Analog read correction in Arduino environement
- Replies: 0
- Views: 4186
Analog read correction in Arduino environement
I try to use the correction for the real reference value and for the non linearity issue. I am in the Arduino ide envirronement. The functions provided doesnt run even with all necessary includes files. For example the function esp_adc_cal_check_efuse seams to not exist in the Arduino environement. ...
- Sat Apr 14, 2018 5:22 pm
- Forum: ESP32 Arduino
- Topic: Getting analog reference and correct analog read error
- Replies: 0
- Views: 3653
Getting analog reference and correct analog read error
Hello, I saw Espressif build some functions for getting the analog reference voltage and for the transfert curve. This functions doesnt compile in a up to date Arduino ide environnement. I have the header files, but the strucure type doesn't compile as excpected. Can you provide exemple in Arduino e...
- Fri Mar 30, 2018 5:04 pm
- Forum: Report Bugs
- Topic: ledcWrite, LEDC_MUTEX_LOCK crash the ESP32
- Replies: 2
- Views: 6976
ledcWrite, LEDC_MUTEX_LOCK crash the ESP32
Hello, I use the arduino IDE. I write some simple sketch to test an infra red library. This library is based on Ledc functionality This sketch run as expected. I incormporate the library in a bigger project and when the esp32 run on ledcWrite() method, the call to LEDC_MUTEX_LOCK() will crash the ES...