Search found 14 matches

by SuperTechSaiyan3
Mon Feb 04, 2019 5:33 am
Forum: General Discussion
Topic: HTTP Client: Content length -1, but receiving data
Replies: 3
Views: 6149

Re: HTTP Client: Content length -1, but receiving data

yea I I thought I was doing something wrong on my end but if we are both having the same issue I'm thinking it's some sort of bug? I tried to trace the code to see why I was getting -1, but the code seem to be correct..
by SuperTechSaiyan3
Fri Feb 01, 2019 5:57 pm
Forum: General Discussion
Topic: HTTP Client: Content length -1, but receiving data
Replies: 3
Views: 6149

Re: HTTP Client: Content length -1, but receiving data

for what its worth I followed the esspressif docs website to send a post request to my website and I am having the same issue. my website receives the data fine, but I still get content length=1. I tried to reverse engineer the problem to no avail so I decided to accept it I have had no issues so fa...
by SuperTechSaiyan3
Sun Jan 20, 2019 12:10 am
Forum: General Discussion
Topic: How to erase flash memory from terminal
Replies: 5
Views: 40142

Re: How to erase flash memory from terminal

on linux the only way I found is to install the esp idf and run "make erase_flash" I suggest doing the same for your mac
by SuperTechSaiyan3
Thu Jan 10, 2019 3:58 am
Forum: General Discussion
Topic: Question regarding Core Dumping, and the ELF file used for core dump
Replies: 9
Views: 10659

Re: Question regarding Core Dumping, and the ELF file used for core dump

ahh! works perfectly now! thank you for your help Igrr. I actually read that page but skipped over it for some reason... for everybody who comes across this issue, this is what my python command looked like to get it working: python $IDF_PATH/components/espcoredump/espcoredump.py info_corefile -t b6...
by SuperTechSaiyan3
Thu Jan 10, 2019 2:09 am
Forum: General Discussion
Topic: Question regarding Core Dumping, and the ELF file used for core dump
Replies: 9
Views: 10659

Re: Question regarding Core Dumping, and the ELF file used for core dump

so I was able to fix the core dump issue, can you tell what it means when I get the backtrace stopped error? ==================== CURRENT THREAD STACK ===================== #-1 0x4000c3f5 in ?? () Backtrace stopped: Cannot access memory at address 0x4000c3f5 ======================== THREADS INFO ===...
by SuperTechSaiyan3
Wed Jan 09, 2019 3:26 pm
Forum: General Discussion
Topic: Question regarding Core Dumping, and the ELF file used for core dump
Replies: 9
Views: 10659

Re: Question regarding Core Dumping, and the ELF file used for core dump

so my code is very large and I have about 4 different c files so it would be hard. my application is a wifi manager + updates sensor data + sends wifi data to my online website. the code was working fine, so was core dump was working fine, it started giving me trouble when I tried to send wifi data ...
by SuperTechSaiyan3
Wed Jan 09, 2019 12:57 pm
Forum: General Discussion
Topic: Question regarding Core Dumping, and the ELF file used for core dump
Replies: 9
Views: 10659

Re: Question regarding Core Dumping, and the ELF file used for core dump

okay I fixed the elf issue I can now find it.. regarding the core dump still not working when it does dump it gives me same "cannot access memory at 0x4...." any thing on the partition? I switched core dump from flash to UART and get the follow error I (190) esp_core_dump: Init core dump to UART E (...
by SuperTechSaiyan3
Wed Jan 09, 2019 4:01 am
Forum: General Discussion
Topic: Question regarding Core Dumping, and the ELF file used for core dump
Replies: 9
Views: 10659

Re: Question regarding Core Dumping, and the ELF file used for core dump

thanks for the fast response! the partition table I am using is Single factory app, no OTA, 0x8000 offset. I am not using a custom partition table should I be? about the elf, where do I find this from what I read about it should be in my esp/PROJECT/build folder, but it is not there. I am using linu...
by SuperTechSaiyan3
Wed Jan 09, 2019 3:35 am
Forum: General Discussion
Topic: Getting Started
Replies: 8
Views: 8905

Re: Getting Started

Hey Diogo,

your image does not show an error can you show it?

if it is same as the OP, try the technique above where you press the buttons, if that does not work and you see a blue LED try my method above.
by SuperTechSaiyan3
Wed Jan 09, 2019 3:32 am
Forum: General Discussion
Topic: Question regarding Core Dumping, and the ELF file used for core dump
Replies: 9
Views: 10659

Question regarding Core Dumping, and the ELF file used for core dump

Hey all, I am having issues with my code and wanted to do some debugging, when I tell the esp32 to generate the core dump it first gives me this error at the beginning: E (202) esp_core_dump: Failed to mmap core dump data (260)! after my cpu panics/crashes it generates my core dump, when I try to pr...