Search found 7 matches
- Mon Mar 16, 2026 3:05 pm
- Forum: General Discussion
- Topic: ESP crashes after uploading sketch with ESP board library higher then 3.0.7
- Replies: 4
- Views: 178
Re: ESP crashes after uploading sketch with ESP board library higher then 3.0.7
Thanks for the explanation
- Mon Mar 16, 2026 1:28 pm
- Forum: General Discussion
- Topic: ESP crashes after uploading sketch with ESP board library higher then 3.0.7
- Replies: 4
- Views: 178
Re: ESP crashes after uploading sketch with ESP board library higher then 3.0.7
OK, but it works perfectly with version 3.0.7
I will change this:
xTaskCreate(SerialScan, "Serial Scan", 3000, NULL, 30, &SerialScanTask);
xTaskCreate(ValueRefresh, "Value Refresh", 4500, NULL, 200, &TaskValueRefresh);
to this:
xTaskCreate(SerialScan, "Serial Scan", 3000, NULL, 2 ...
I will change this:
xTaskCreate(SerialScan, "Serial Scan", 3000, NULL, 30, &SerialScanTask);
xTaskCreate(ValueRefresh, "Value Refresh", 4500, NULL, 200, &TaskValueRefresh);
to this:
xTaskCreate(SerialScan, "Serial Scan", 3000, NULL, 2 ...
- Mon Mar 16, 2026 1:18 pm
- Forum: General Discussion
- Topic: ESP crashes after uploading sketch with ESP board library higher then 3.0.7
- Replies: 4
- Views: 178
ESP crashes after uploading sketch with ESP board library higher then 3.0.7
I updated the onboard library in my Arduino IDE 2 to version 3.3.7 from here: https://github.com/espressif/arduino-esp32
When I upload my sketch to the ESP32, the ESP always crashes. I can only use version 3.0.7 at most. Starting with version 3.1.0, the ESP32 crashes when I run my sketch. In the ...
When I upload my sketch to the ESP32, the ESP always crashes. I can only use version 3.0.7 at most. Starting with version 3.1.0, the ESP32 crashes when I run my sketch. In the ...
- Mon Mar 16, 2026 10:12 am
- Forum: General Discussion
- Topic: MacBook M5 driver CH340 dosen't work
- Replies: 2
- Views: 307
Re: MacBook M5 driver CH340 dosen't work
I could solve the problem. I had to set baud rate to 115200
- Sun Mar 15, 2026 9:52 pm
- Forum: General Discussion
- Topic: MacBook M5 driver CH340 dosen't work
- Replies: 2
- Views: 307
MacBook M5 driver CH340 dosen't work
Ich have a new MacBook M5 with MacOS 26.3.1. My ESP32 Dev V1 with a CH340 chip isn't working properly. On my old MacBook, the Arduino IDE shows the port cu.wchusbserial14100. I can program the ESP through that port. On my new MacBook, the Arduino IDE shows the port cu.usbserial-10. On this MacBook ...
- Wed Apr 29, 2020 10:08 pm
- Forum: Sample Code
- Topic: Sinus Signal Generator from 18Hz to 250kHz
- Replies: 10
- Views: 89420
Re: Sinus Signal Generator from 18Hz to 250kHz
Thanks joydipdns, it works!!
I have to generate a broken sound that is beeping. Is there any possibility to set the wave for 300ms and have a delay of 100ms?
I have to generate a broken sound that is beeping. Is there any possibility to set the wave for 300ms and have a delay of 100ms?
- Thu Apr 23, 2020 7:21 am
- Forum: Sample Code
- Topic: Sinus Signal Generator from 18Hz to 250kHz
- Replies: 10
- Views: 89420
Re: Sinus Signal Generator from 18Hz to 250kHz
I tried this code using copy past, but complier complains. I had to add:
void setup() {
}
void loop() {
}
Now I can compile and upload code, but I didn't get any sin wave.
void setup() {
}
void loop() {
}
Now I can compile and upload code, but I didn't get any sin wave.