Search found 19 matches

by CKiamy
Mon Jun 05, 2023 9:57 am
Forum: ESP-IDF
Topic: Error when creating littlefs partition image using littlefs_create_partition_image
Replies: 4
Views: 3069

Re: Error when creating littlefs partition image using littlefs_create_partition_image

Hi, I changed the C:\MinGW\bin\gcc.exe name to cc.exe,and it seems to work. I have the same problem using the cmake command for littlefs. I would believe the problem rather has to do with the fact that the makefile is inside a git-submodule folder, and therefore cannot find the paths to the littlef...
by CKiamy
Mon Jun 05, 2023 8:17 am
Forum: ESP-IDF
Topic: Error when creating littlefs partition image using littlefs_create_partition_image
Replies: 4
Views: 3069

Re: Error when creating littlefs partition image using littlefs_create_partition_image

Hi, I changed the C:\MinGW\bin\gcc.exe name to cc.exe,and it seems to work. I have the same problem using the cmake command for littlefs. I would believe the problem rather has to do with the fact that the makefile is inside a git-submodule folder, and therefore cannot find the paths to the littlef...
by CKiamy
Thu May 25, 2023 2:40 pm
Forum: ESP-IDF
Topic: Wifi provisioning not connecting to the best rssi AP.
Replies: 3
Views: 1021

Re: Wifi provisioning not connecting to the best rssi AP.

Does anyone have a clue? I am sorry I am bumping this so frequently, I am in a pretty tight position at the moment, and I am still stuck with this problem.

I am currently using a workaround, where I disconnect and then connect to the desired AP, but this is not ideal in any way.
by CKiamy
Mon May 22, 2023 9:02 am
Forum: ESP-IDF
Topic: Wifi provisioning not connecting to the best rssi AP.
Replies: 3
Views: 1021

Wifi provisioning not connecting to the best rssi AP.

ESP-IDF version: 5.1 Device: ESP32-WROOM_32UE Problem description: I am using the wifi-provisioning API and example provided by Espressif. I am situated in a place with multiple access points within the same SSID/router. I want for my device to connect to the nearest AP upon providing credentials to...
by CKiamy
Sat Mar 18, 2023 10:01 am
Forum: ESP-IDF
Topic: ESP32-S3 nvs_set_blob results in watchdog trigger
Replies: 1
Views: 916

Re: ESP32-S3 nvs_set_blob results in watchdog trigger

The nvs_set_blob operation is probably taking too much time, thus triggering the watchdog since it "thinks" the esp is stuck. Please provide: 1. A snippet of the code block where you see the error occuring. 2. A log file with log level set to debug or verbose mode. 3. More details of your applicatio...
by CKiamy
Fri Mar 17, 2023 7:06 am
Forum: ESP-IDF
Topic: Sending commands via JTAG to the esp32.
Replies: 3
Views: 1179

Re: Sending commands via JTAG to the esp32.

Bump
by CKiamy
Thu Mar 16, 2023 4:04 pm
Forum: ESP-IDF
Topic: Sending commands via JTAG to the esp32.
Replies: 3
Views: 1179

Sending commands via JTAG to the esp32.

Hello everyone! For my project I am currently using the ESP32-WROOM-32UE device and a jlink adapter for JTAG flashing and debugging. Is there a way to send a command through a command window via JTAG that is similar to UART? For example, to read information received via UART, we can use the function...
by CKiamy
Wed Mar 08, 2023 6:10 am
Forum: ESP-IDF
Topic: Flashing with jtag on ESP32_WROOM module for the first time resets indefinitely
Replies: 3
Views: 1137

Re: Flashing with jtag on ESP32_WROOM module for the first time resets indefinitely

ESP_Sprite wrote:
Wed Mar 08, 2023 12:50 am
Looks like you're not programming the 2nd stage bootloader binary.
Where can I find/generate the .bin file for the 2nd stage bootloader? And to which offset should I flash it to the esp32?
by CKiamy
Tue Mar 07, 2023 4:16 pm
Forum: ESP-IDF
Topic: Flashing with jtag on ESP32_WROOM module for the first time resets indefinitely
Replies: 3
Views: 1137

Flashing with jtag on ESP32_WROOM module for the first time resets indefinitely

Hello everyone, I have made a custom board that uses the esp32-wroom-32ue module. The way I flash this guys is by using the JTAG connections, a jlink and the openocd script: openocd -f interface/jlink.cfg -f board/esp-wroom-32.cfg -c "program_esp build/myCode.bin 0x50000" This works on devices that ...