Search found 19 matches

by Ravenholem
Mon Jun 26, 2023 5:11 pm
Forum: ESP-IDF
Topic: Help with Makefile to Gzip javascript file and include into Project using vscode
Replies: 1
Views: 1127

Help with Makefile to Gzip javascript file and include into Project using vscode

Hello, I was wondering if anyone could help me out as I am pretty lost on how to achieve what I need. I am developing a IOT type device and compress my Javascript files with Gzip and embed them into my firmware. My issue is always remembering to gzip the javascript files when they have had changes m...
by Ravenholem
Thu May 18, 2023 12:55 pm
Forum: ESP-IDF
Topic: Suggestions on tracking down "unhandled interrupt 6 on Core 0"
Replies: 2
Views: 1321

Re: Suggestions on tracking down "unhandled interrupt 6 on Core 0"

I haven't gotten to much deeper into this issue yet but appreciate the reply and help. I found a Buffer issue I created by not protecting it with a mutex and having it being wrote and read by two threads. It was related to my Websocket usage which would cause my problem only when connected to WIFI s...
by Ravenholem
Wed May 10, 2023 12:36 pm
Forum: ESP-IDF
Topic: Suggestions on tracking down "unhandled interrupt 6 on Core 0"
Replies: 2
Views: 1321

Suggestions on tracking down "unhandled interrupt 6 on Core 0"

Hey everyone, I have been working on a rather large project. Recently I have been getting "unhandled interrupt 6 on core 0!" After leaving it running for long period of time. Can't really pin down how long. It almost seems random. I have read it could be a possible stack smash thats overwriting the ...
by Ravenholem
Wed May 10, 2023 12:11 pm
Forum: ESP-IDF
Topic: IDF terminal - unreadable characters received from ESP32
Replies: 8
Views: 4460

Re: IDF terminal - unreadable characters received from ESP32

Experienced same exact issue. After a round of updates IDF monitor would spew garbage. Tracked it down to baud being set to 460800. I manual launch monitor with 115200 and it would work fine. Vscode being a blackbox to me with so many levers and buttons I had no clue where to fix it at so just run m...
by Ravenholem
Wed May 10, 2023 12:06 pm
Forum: ESP-IDF
Topic: Help Understanding Total Size of Blobs wrote to NVS ?
Replies: 3
Views: 1808

Re: Help Understanding Total Size of Blobs wrote to NVS ?

"Blobs are allowed to span over multiple pages by dividing them into smaller chunks. For tracking these chunks, an additional fixed length metadata entry is stored called “blob index”. " I had read that in the Docs but thought it only added that header when it spans pages. Does it add that to every...
by Ravenholem
Sun May 07, 2023 3:39 pm
Forum: ESP-IDF
Topic: Help Understanding Total Size of Blobs wrote to NVS ?
Replies: 3
Views: 1808

Help Understanding Total Size of Blobs wrote to NVS ?

Hello, I have started the process of working with NVS and have a question related to BLOBS. I have a Array of 140bytes that I write into NVS as a blob. When I use nvs_get_stats() I expected to see 6 entries equalling around 192 bytes but instead I see 7 entries taking 224 bytes. My Understanding aft...
by Ravenholem
Thu Jul 28, 2022 6:59 pm
Forum: ESP-IDF
Topic: TWAI Transmit Issue, When 2 Bytes of the Data are variable numbers. Going crazy here
Replies: 0
Views: 1508

TWAI Transmit Issue, When 2 Bytes of the Data are variable numbers. Going crazy here

Hello, I have been pulling my hair out with this issue.. Seriously doesn't make any sense what so ever to me. When I try to have two bytes of the Data[] Array be operated on the whole Twai Transmit function breaks. Look at the below code I made a comment of where the issue happens. This is what goes...
by Ravenholem
Thu Nov 11, 2021 2:23 pm
Forum: ESP-IDF
Topic: Need help getting WebSocket Server and Http Web Server to use different ports
Replies: 2
Views: 3756

Re: Need help getting WebSocket Server and Http Web Server to use different ports

Thank you for the reply. In the time between my post and now. I figured out how to create two servers that listen on two ports one on 80 with URI for handling pages and the other on 1337 handling WS requests and traffic. Though as you stated, I feel like that is very inefficient. I could not figure ...
by Ravenholem
Wed Nov 10, 2021 7:46 pm
Forum: ESP-IDF
Topic: Need help getting WebSocket Server and Http Web Server to use different ports
Replies: 2
Views: 3756

Need help getting WebSocket Server and Http Web Server to use different ports

Hello to all! This is my first post on the forums as we have just migrated over from AVR to the ESP32 platform as our new base for future projects. I have been knee deep in the ESP32 water the past few days trying to get Wifi Soft AP web interface up and running use WebSocket The thing I am struggli...