Search found 3 matches

by kevscott
Wed Aug 30, 2023 5:04 pm
Forum: ESP-IDF
Topic: espefuse ignoring command line arguments
Replies: 1
Views: 1424

Re: espefuse ignoring command line arguments

After further trial and error I have managed to get espefuse.py to work. What I had to do was use the following command : python C:\Users\<your-username>\esp\esp-idf\components\esptool_py\esptool\espefuse.py --help Just a reminder this is with release 5.1, your folder structure might be slightly dif...
by kevscott
Fri Aug 25, 2023 10:28 am
Forum: ESP-IDF
Topic: espefuse ignoring command line arguments
Replies: 1
Views: 1424

espefuse ignoring command line arguments

I have done a clean install of ESP-IDF V5.1 (release version) in VS Code and as far as code building is concerned everything works fine. I have however unfortunately designed a PCB that has GPIO 12 (MTDI) connected to an SD card and flashing the ESP32 is unpredictable because of the VDD_SDIO voltage...
by kevscott
Sat Jan 29, 2022 9:25 pm
Forum: ESP32 Arduino
Topic: Reading/writing timer in interrupt
Replies: 1
Views: 4268

Re: Reading/writing timer in interrupt

In setup(), you initialise timer0 then start it running. What this will do is call up the onTimer0 ISR. At this point you have still to initialise timer1 as the code in setup() for that has still to be executed. As a result of that the timer1 structure is still set to the NULLs that you initialised ...