Search found 11 matches

by c.Hicham
Mon Oct 02, 2023 8:42 am
Forum: ESP-IDF
Topic: Strange esp reset reason ( RTC_SW_SYS_RESET :Software reset digital core)
Replies: 2
Views: 1223

Strange esp reset reason ( RTC_SW_SYS_RESET :Software reset digital core)

Hello, I'm using esp32 target and esp-idf v4.3 In my application I'm using `rtc_get_reset_reason()` to get the reset reason for each core and report it in my data. rtc_get_reset_reason(0); rtc_get_reset_reason(1); In deployed devices in the field I get from time to time reset reasons 3 and 14 for co...
by c.Hicham
Fri Sep 01, 2023 1:25 pm
Forum: ESP-IDF
Topic: coredump.py in esp-idf v4.3 fails to read from file
Replies: 0
Views: 2815

coredump.py in esp-idf v4.3 fails to read from file

Hello all, I have enabled coredump logging in flash. I'm using esp-idf v4.3 I'm able to read coredump data from flash python espcoredump.py -p COM7 info_corefile build.elf -r esp32_rom.elf I can save coredump in file using espcoredump.py -p COM7 info_corefile build.elf -s codedump_datav2.elf But If ...
by c.Hicham
Thu Apr 13, 2023 2:13 pm
Forum: General Discussion
Topic: Action in Github: Using custom partition table alter the build folder access
Replies: 2
Views: 854

Action in Github: Using custom partition table alter the build folder access

I have the following action in my Github repository for esp32 project name: Build firmware on: push: branches: [master] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3 with: submodules: 'recursive' fetch-depth: 0 - name: esp-idf build uses: espressif/esp-id...
by c.Hicham
Tue May 12, 2020 2:13 pm
Forum: ESP-IDF
Topic: mqtt when ppp and wifi enabled
Replies: 0
Views: 1646

mqtt when ppp and wifi enabled

Hello, I'm using a custom board with esp32 chip in it and an LTE modem. I establish ppp connection using the modem and then connect to my server using mqtt (mqtt_cfg.transport = MQTT_TRANSPORT_OVER_SSL). I'm able to connect to the server and send data with no any issues. But when I enable the WIFI i...
by c.Hicham
Sun Feb 23, 2020 12:11 pm
Forum: Hardware
Topic: ESP32 Quality Control Experiences.
Replies: 2
Views: 4990

Re: ESP32 Quality Control Experiences.

Hi,

1 of 100 module ! that's 1% and it can be a big issue when doing batches of multiple thousands of units.
You should report this to ESP32 production department to investigate the source of the faulty device.
by c.Hicham
Sat Feb 22, 2020 11:05 pm
Forum: Hardware
Topic: Flash new application in ESP32 using another microcontroller
Replies: 2
Views: 4798

Flash new application in ESP32 using another microcontroller

Hello, I'm designing a custom board with an esp32 Soc on it and I want to be able to update the esp32 firmware using a host microcontroller available in the board. I can't find any examples of this so I'm wondering what pins should I connect to my host microcontroller! I know that at least pins CHIP...
by c.Hicham
Mon Feb 10, 2020 11:06 am
Forum: ESP-IDF
Topic: Generate custom library for esp32
Replies: 0
Views: 1634

Generate custom library for esp32

Hello, I have to generate a custom library for one of our client to use in esp32 project. The code is hardware independent, so no worries about using different sdkconfig in build time by the client. I have simply added the code source as component in esp-idf component folder and compiled a random pr...