Search found 16 matches
- Mon Feb 09, 2026 11:13 am
- Forum: General Discussion
- Topic: LittleFS: fail to create partition image
- Replies: 1
- Views: 147
Re: LittleFS: fail to create partition image
Solved. You need to add the littlefs_create_partition_image() command after the line project(yourprojectname) in the main CMakeLists file. If its done before, the compiler doesn't know about the existence of the littlefs_create_partition_image() command yet
- Mon Feb 09, 2026 11:03 am
- Forum: General Discussion
- Topic: LittleFS: fail to create partition image
- Replies: 1
- Views: 147
LittleFS: fail to create partition image
I'm trying to use the CMakeLists.txt compile command to create and upload the file partition when I run the idf.py build command. I'm using IDF version 5.3.4.
I'm porting my code from using SPIFFS to LittleFS. I'm using joltwallet/littlefs. I've added it as a dependency using idf.py add-dependency ...
I'm porting my code from using SPIFFS to LittleFS. I'm using joltwallet/littlefs. I've added it as a dependency using idf.py add-dependency ...
- Wed Jan 21, 2026 4:52 pm
- Forum: General Discussion
- Topic: Out of buffer: OTA + AWS S3 + presigned URL
- Replies: 2
- Views: 389
Re: Out of buffer: OTA + AWS S3 + presigned URL
Solved. You need to adjust buffer_size_tx, not buffer_size, in esp_http_client_config_t config
- Wed Jan 21, 2026 2:34 pm
- Forum: General Discussion
- Topic: Out of buffer: OTA + AWS S3 + presigned URL
- Replies: 2
- Views: 389
Re: Out of buffer: OTA + AWS S3 + presigned URL
Update: I get the same error when using the "advanced_https_ota_example" project , the error being:
E (10797) HTTP_CLIENT: Out of buffer
E (10797) esp_https_ota: Failed to open HTTP connection: ESP_FAIL
E (10797) esp_https_ota: Failed to establish HTTP connection
E (10807) advanced_https_ota ...
E (10797) HTTP_CLIENT: Out of buffer
E (10797) esp_https_ota: Failed to open HTTP connection: ESP_FAIL
E (10797) esp_https_ota: Failed to establish HTTP connection
E (10807) advanced_https_ota ...
- Wed Jan 21, 2026 10:44 am
- Forum: General Discussion
- Topic: Out of buffer: OTA + AWS S3 + presigned URL
- Replies: 2
- Views: 389
Out of buffer: OTA + AWS S3 + presigned URL
I'm trying to implement OTA updates using presigned URLs to access a AWS S3 bucket. The firmware.bin file is stored in S3. I generate a presigned URL with 15 minute expiry. I send the presigned URL to the ESP over MQTT. The payload is as follows:
I (60877) OTA_MQTT: MQTT message received (1008 ...
I (60877) OTA_MQTT: MQTT message received (1008 ...
- Mon Apr 22, 2024 3:29 pm
- Forum: General Discussion
- Topic: PCB review
- Replies: 2
- Views: 1657
PCB review
Hi. I am making custom ESP32 boards, but I wish to remove the CP2102 programmer IC from the board for prototyping, because it costs quite a bit to have it on every board. I am making an external programmer. I want this to be as small as possible. I'd appreciate a review of my circuit. I am following ...
- Sun Mar 24, 2024 9:54 pm
- Forum: General Discussion
- Topic: USB-C to USB-C not working, USB-C to USB-A working, have pulldowns
- Replies: 3
- Views: 2153
Re: USB-C to USB-C not working, USB-C to USB-A working, have pulldowns
There was an oversight on my side. The PCB assembly used 1k ohm resistors instead of 5.1k ohm. I changed the resistors, and it works perfectly now.
While I have your attention, are there any suggestions you have for the layout of my tracks? Is there anything I could do better?
While I have your attention, are there any suggestions you have for the layout of my tracks? Is there anything I could do better?
- Wed Mar 20, 2024 7:25 am
- Forum: General Discussion
- Topic: USB-C to USB-C not working, USB-C to USB-A working, have pulldowns
- Replies: 3
- Views: 2153
USB-C to USB-C not working, USB-C to USB-A working, have pulldowns
Hi. I have a custom board design that uses USB-C in USB 2.0 mode for data and 5V power. I am aware that in order for a USB-C host to recognise the USB-C peripheral, it requires a 5.1k ohm resistor on both CC1 and CC2. I have placed these resistors on my board. When using a USB-C to USB-A cable, I am ...
- Tue Nov 28, 2023 9:11 am
- Forum: General Discussion
- Topic: ESP32-WROOM-32D does not always reset on power-up
- Replies: 10
- Views: 19549
Re: ESP32-WROOM-32D does not always reset on power-up
Not on the chip/module datasheet (https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf), but on the devboard schematic: https://dl.espressif.com/dl/schematics/esp32_devkitc_v4-sch.pdf. This is also where I got the value for my first RC delay circuit (R=10k, C=0 ...
- Mon Nov 27, 2023 9:23 am
- Forum: General Discussion
- Topic: ESP32-WROOM-32D does not always reset on power-up
- Replies: 10
- Views: 19549
Re: ESP32-WROOM-32D does not always reset on power-up
Yeah, remove that. Likely it's empty when you boot up and it is only charged by the internal pullup on GPIO0, so there's a high chance the ESP32 comes out of reset and sees GPIO0 low, causing it to boot into download mode rather than start your application.
Thanks for the suggestion. I found a ...