Search found 10 matches

by CCooper1971
Thu Apr 18, 2024 1:39 pm
Forum: Hardware
Topic: ESP32 WROOM 32E - GPIO 0 MCLK Signal Problems
Replies: 1
Views: 1706

Re: ESP32 WROOM 32E - GPIO 0 MCLK Signal Problems

Hi All, For those who experience the same problem when using the reference designs, I have solved it as follows. When reviewing the diagram supplied by Espressif, see initial post. C15, which is a 0.1uF debounce capacitor on the Boot switch causes, the MCLK to be smoothed. Upon removing said debounc...
by CCooper1971
Thu Apr 18, 2024 12:29 pm
Forum: Hardware
Topic: ESP32 WROOM 32E - GPIO 0 MCLK Signal Problems
Replies: 1
Views: 1706

ESP32 WROOM 32E - GPIO 0 MCLK Signal Problems

Hi, I have designed a PCB using the ESP32 WROOM, after building a successful prototype. However, on the prototype, my GPIO 0 MCLCK signal is OK Please see image DS0001.PNG While on my new PCB, the signal is noisy, please see image DS0002.PNG I have designed the board using the Espressif reference di...
by CCooper1971
Thu Dec 21, 2023 3:43 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Hi All, It seems that I didn't check input power properly enough and in short, I was being stupid. Basically for anyone reading this, I wasn't supplying enough voltage to the 5V input of the ESP DEV board, which meant it was dropping out when initialising the ESP_NOW_INIT. Explanation: Although desc...
by CCooper1971
Sat Dec 16, 2023 9:52 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

I have as far as I can with the Boot Trace listed earlier, but it gives very little information. This is the latest Boot Trace output and its clearly pointing at esp_now_init: Exception:Error: ??:?:::0x40121b6c:esp_now_init /builds/idf/crosstool-NG/.build/HOST-i686-w64-mingw32/xtensa-esp32-elf/src/n...
by CCooper1971
Tue Dec 12, 2023 5:22 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Hi All, Unfortunately, this wasn't the fix I thought it was. Yes, it stopped the boot loop, but that is only while the USB lead is connected. The boot loop returns as soon as you remove the USB lead, with the same error which is, as soon as it gets to ESP_NOW_INIT, the ESP reboots. What is fascinati...
by CCooper1971
Sat Dec 09, 2023 5:58 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Apologies to anyone who has read this and tried to help, but I have figured out the issue. One line of code which I had missed as follows:

Code: Select all

	// Set device as a Wi-Fi Station.
	WiFi.mode(WIFI_STA);
by CCooper1971
Fri Dec 08, 2023 8:59 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Although I haven't solved it with this method, at least there has been a positive already, as it turns out that Visual Studio with Visual Micro includes an Exception Error system as standard! Unfortunately, it simply points me to what I already knew, which his that the error occurs at this point in ...
by CCooper1971
Thu Dec 07, 2023 4:30 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Hi, Not sure how to do that specifically. I have purchased an ESP Prog, which I’ll configure over the weekend to see if I can come up with any indicators. What’s annoying is that the system works as an I2S system, or I can use ESP Now, but as soon as I bring them together, I get the boot loop. There...
by CCooper1971
Thu Dec 07, 2023 7:29 am
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

Re: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Hi, I have tried all manner of approaches to establish what’s causing this. Searches advise that the problem is caused by in illegal memory call, caused here: excvaddr:%200x0000004c in the error. I have removed the interrupts, changed the order of the setup, ensured enough memory remains. Tried diff...
by CCooper1971
Wed Dec 06, 2023 9:36 pm
Forum: ESP32 Arduino
Topic: ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)
Replies: 12
Views: 149597

ESP32 - Guru Meditation Error: Core 1 panic'ed (LoadProhibited)

Hi All, Need some help here. Running an ESP32 WROOM and using 2 x I2S interfaces (In (Microphone) & Out (Amplifier))), I2C interface and SPI interface. The I2C controls a Texas Instruments Class D Amplifier, while the SPI connects to an SD card for WAV & MP3 files. This functionality all works and I...