Search found 12 matches
- Mon Feb 05, 2024 5:10 pm
- Forum: ESP-IDF
- Topic: partition > 8MB
- Replies: 1
- Views: 1036
partition > 8MB
Hello folk, I have a t-display amolded s3 with 16MB flash, 8 MB psram, esp32s3 I want to use a 13 MB partition, filled with raw data for gif animation, everything is ok when the partition is filled < 8MB data, above I get an error: id.py build shows: elf/bin/ld: httpd.elf section `.flash.rodata' wil...
- Thu Jan 30, 2020 3:27 pm
- Forum: ESP-IDF
- Topic: Changes to RMT driver implementation?
- Replies: 4
- Views: 7701
Re: Changes to RMT driver implementation?
Hi szguyer, I'm running in the same problem, it worked perfect before updating IDF to idf_v4.1-dev-2047-g600d542-dirty now I'm getting a crash at fastled init Could you fix that issue by now ? Regards, Michael I (1035) fastled: init Guru Meditation Error: Core 0 panic'ed (LoadProhibited). Exception ...
- Thu Oct 26, 2017 3:29 pm
- Forum: ESP-IDF
- Topic: Looking for help with component.mk warnings in libesphttpd
- Replies: 7
- Views: 10578
Re: Looking for help with component.mk warnings in libesphttpd
Hi,
here an example how to use libesphttpd with IDF project
It is based on Spritetm git examples,
the original one's with cat pictures,
with removed warnings and working heatshrink compression
Regards,
Grooves
here an example how to use libesphttpd with IDF project
It is based on Spritetm git examples,
the original one's with cat pictures,
with removed warnings and working heatshrink compression
Regards,
Grooves
- Fri Oct 06, 2017 3:04 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 11283
Re: add a static library to main in project Mainfile
Hi Sprite, now I understand more what your code does: esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL); is correct, you check if there is already a OTA selected partition. The problem was, when there on OTA select partition (after make erase_flash), the functio...
- Thu Oct 05, 2017 4:57 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 11283
Re: add a static library to main in project Mainfile
Is it correct that you are looking for data partitions ?
esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL);
I use the predefined partitiontable from menuconfig which generates two OTA app partitions
Regards,
Grooves
esp_partition_find_first(ESP_PARTITION_TYPE_DATA, ESP_PARTITION_SUBTYPE_DATA_OTA, NULL);
I use the predefined partitiontable from menuconfig which generates two OTA app partitions
Regards,
Grooves
- Thu Oct 05, 2017 3:52 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 11283
Re: add a static library to main in project Mainfile
I see, due to MMU it is always mapped to the same virtual addresses, I tried to download just the build.bin file and got some errors: I don't know which one is important ... Firmware upload cgi start. checkBinHeader: e9 4008 3f400020 esp32 ota: no valid ota select sector found! OTA part select ID: -...
- Fri Sep 29, 2017 2:46 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 11283
Re: add a static library to main in project Mainfile
Hi Sprite,
is it correct, the esp-idf branch for ESP32 doesn't support the OTA update via httpd flash page yet ?
I can't find howto build user1.bin/user2.bin
Regards,
Grooves
is it correct, the esp-idf branch for ESP32 doesn't support the OTA update via httpd flash page yet ?
I can't find howto build user1.bin/user2.bin
Regards,
Grooves
- Thu Sep 28, 2017 4:26 pm
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 11283
Re: add a static library to main in project Mainfile
Many thanks, that is exactly I was looking for, saves my time, :-) did just some minor changes to be able to compile it as component in IDF 3.0 in httpdesps.h +++#include "platform.h" in platform.h ---typedef *HttpdPlatTimer HttpdPlatTimerHandle; +++typedef HttpdPlatTimer* HttpdPlatTimerHandle; in c...
- Thu Sep 28, 2017 10:53 am
- Forum: ESP-IDF
- Topic: add a static library to main in project Mainfile
- Replies: 7
- Views: 11283
add a static library to main in project Mainfile
Hi folk, how can I add and link an existing static library file .a to main project ? I have a huge libwebpages-espfs.a file which contains html files packed in espfs filesystem, comes from awesome Sprites ESP8266 HTTPD project. I'm working on a portation to ESP-IDF and it works already well with har...
- Fri Sep 22, 2017 11:10 am
- Forum: ESP-IDF
- Topic: [Answered] How to use esp_wifi_set_auto_connect()?
- Replies: 5
- Views: 14743
Re: [Answered] How to use esp_wifi_set_auto_connect()?
I fiddled around with the esp_wifi_set_auto_connect() function, it is true per default, but I don't see any distinction between true or false. to start the wifi it needs always: esp_wifi_init esp_wifi_set_mode (only if not stored in NVS) esp_wifi_set_config (only if not stored in NVS) esp_wifi_start...