Search found 3 matches
- Sat Nov 15, 2025 1:15 pm
- Forum: ESP32 Arduino
- Topic: Serial.begin() leads to build errors
- Replies: 1
- Views: 4605
Serial.begin() leads to build errors
As soon as I add Serial.begin(115200); in my project i get a bunch of build errors (see below). Without that line everything works as it should. Other Arduino functions work fine. In an empty project just for testing Arduino Serial printing it also works without a problem. Tried to solve it with ...
- Tue Oct 25, 2022 10:49 pm
- Forum: ESP-IDF
- Topic: ESP32-S2: Very slow startup time compared to ESP32
- Replies: 1
- Views: 2426
Re: ESP32-S2: Very slow startup time compared to ESP32
I also tried a variant without Arduino. So pure ESP-IDF. This is the code:
#include <stdio.h>
#include "esp_timer.h"
#include "esp_sleep.h"
void app_main(void)
{
printf("\n");
printf("Time since boot: %lld us\n", esp_timer_get_time());
esp_sleep_enable_timer_wakeup(10 * 1000000);
esp_deep ...
#include <stdio.h>
#include "esp_timer.h"
#include "esp_sleep.h"
void app_main(void)
{
printf("\n");
printf("Time since boot: %lld us\n", esp_timer_get_time());
esp_sleep_enable_timer_wakeup(10 * 1000000);
esp_deep ...
- Tue Oct 25, 2022 1:36 am
- Forum: ESP-IDF
- Topic: ESP32-S2: Very slow startup time compared to ESP32
- Replies: 1
- Views: 2426
ESP32-S2: Very slow startup time compared to ESP32
I have a project where I use a custom designed PCB with the ESP32-S2-Solo module to get some sensor data and send them via ESP-NOW. Everything is battery powered and therefore I aim for the lowest power consumption possible.
The situation now: Everything is working but the boot time of the ESP32-S2 ...
The situation now: Everything is working but the boot time of the ESP32-S2 ...