Search found 39 matches

by PeteDD
Fri Apr 12, 2024 2:28 pm
Forum: General Discussion
Topic: Any good books using Espressif tools?
Replies: 8
Views: 5634

Re: Any good books using Espressif tools?

A nice book with code examples: FreeRTOS for ESP32-Arduino - Practical Multitasking Fundamentals (by Warren Gay) :?: I have been considering buying this book but note that it has not been updated since being published in January 2020. Do you find that this book is still accurate considering how muc...
by PeteDD
Wed Feb 28, 2024 3:41 pm
Forum: General Discussion
Topic: can't printf with ESP32-S2 ESP-IDF 5.1
Replies: 5
Views: 48205

Re: can't printf with ESP32-S2 ESP-IDF 5.1

Missing the point altogether. Let me try again... For this ONE PROCESSOR, this functionality, being able to print equally with Serial.print(), ESP_LOG*, or printf(), does not work whereas it works for EVERY OTHER ESP family processor I have used, which are many.
by PeteDD
Sun Dec 10, 2023 9:39 pm
Forum: General Discussion
Topic: mqtt_server.crt.S' not found, needed by target .. mqtt_server.crt
Replies: 0
Views: 27021

mqtt_server.crt.S' not found, needed by target .. mqtt_server.crt

Using - framework-arduinoespressif32 @ 3.0.0+sha.2b521e5 - framework-espidf @ 3.50102.0 (5.1.2) Not wanting to use ESP-Insight but I have yet to succeed at disabling it from the build. sdkconfig: # ESP Insights # # CONFIG_ESP_INSIGHTS_ENABLED is not set CONFIG_ESP_INSIGHTS_TRANSPORT_MQTT=y # CONFIG_...
by PeteDD
Sat Dec 09, 2023 1:50 pm
Forum: General Discussion
Topic: can't printf with ESP32-S2 ESP-IDF 5.1
Replies: 5
Views: 48205

Re: can't printf with ESP32-S2 ESP-IDF 5.1

As far as I know, printf will not work in Arduino frameworks. That is not correct as I am able to use printf and ESP_LOG with other projects buildt boards other than ESP32-S2 lolin_S2_mini with the exact same code and in the Arduino mode. In fact... not even the following absolutely minimal project...
by PeteDD
Sat Dec 09, 2023 1:43 pm
Forum: General Discussion
Topic: NOTHING WILL BUILD with ESPIDF 5.1/Arduino 3.0 for ESP32-S2 lolin_S2-mini
Replies: 0
Views: 11430

NOTHING WILL BUILD with ESPIDF 5.1/Arduino 3.0 for ESP32-S2 lolin_S2-mini

see https://github.com/espressif/esp-idf/issues/12763 for full details (works just fine for other boards such as esp32-s3-devkitc-1) platformio: [env:lolin_s2_mini] platform = espressif32 board = lolin_s2_mini framework = espidf, arduino Code: #include <Arduino.h> void setup() {} void loop() {} sdkc...
by PeteDD
Sat Dec 09, 2023 12:20 am
Forum: General Discussion
Topic: can't printf with ESP32-S2 ESP-IDF 5.1
Replies: 5
Views: 48205

can't printf with ESP32-S2 ESP-IDF 5.1

Can't make it any simpler... can't get printf to work on ESP32-S2 with framework = espidf, arduino This works with ESP32-S3 just fine. Any clues??? platformio: [env:lolin_s2_mini] platform = espressif32 board = lolin_s2_mini framework = espidf, arduino main.cpp: #include <Arduino.h> #include <stdio....
by PeteDD
Thu Dec 07, 2023 10:43 pm
Forum: General Discussion
Topic: esp-idf 5.1 crazy amount of log output... way different than before
Replies: 2
Views: 4042

Re: esp-idf 5.1 crazy amount of log output... way different than before

Thanks. I ended up doing something like that and adding my own "MY_LOG_LEVEL" and then setting in my settings.h file #define MY_LOG_LEVEL ESP_LOG_DEBUG then, in each of my functions, something like this... static const char *TAG = "wifiInit"; esp_log_level_set(TAG, MY_LOG_LEVEL); Now I can control t...
by PeteDD
Sun Dec 03, 2023 9:10 pm
Forum: General Discussion
Topic: esp-idf 5.1 arduino 3.0 Wemos Lolin S2 mini Hello World 'USBSerial' was not declared in this scope
Replies: 2
Views: 5236

esp-idf 5.1 arduino 3.0 Wemos Lolin S2 mini Hello World 'USBSerial' was not declared in this scope

Recently switched to - framework-arduinoespressif32 @ 3.0.0 - framework-espidf @ 3.50102.0 (5.1.2) Trying to do a quick project with (Wemos) Lolin s2 Mini Having problems with libraries wanting to use USBSerial and not finding it. In fact, just including arduino.h throws these errors. platformio: [e...