Search found 2 matches
- Wed Sep 16, 2020 11:23 am
- Forum: ESP32 Arduino
- Topic: Guru Meditation Error: Core 1 panic'ed (Cache disabled but cached memory region accessed)
- Replies: 2
- Views: 4695
Re: Guru Meditation Error: Core 1 panic'ed (Cache disabled but cached memory region accessed)
I did some more testing. I moved the WiFi.begin() to setup() and used only WiFi.recconect to loop(). Works fine now. So I guess it's not power related.
- Tue Sep 15, 2020 6:08 pm
- Forum: ESP32 Arduino
- Topic: Guru Meditation Error: Core 1 panic'ed (Cache disabled but cached memory region accessed)
- Replies: 2
- Views: 4695
Guru Meditation Error: Core 1 panic'ed (Cache disabled but cached memory region accessed)
Hello there! Here's my code : #include <WiFi.h> #include <driver/adc.h> #define AUDIO_BUFFER_MAX 1600 #define SSID "***" #define PASSWD "***" #define PORT 6120 // IANA unassigned port uint8_t audioBuffer[AUDIO_BUFFER_MAX]; uint8_t transmitBuffer[AUDIO_BUFFER_MAX]; uint32_t bufferPointer = 0; int sle...