ESP_LOGX and Arduino
Posted: Sat Oct 19, 2019 5:22 pm
is there a way to enable the ESP_LOGX while using Arduino.h ?
"ESP print" never appears on the screen...
thank you
Code: Select all
void setup() {
Serial.begin(115200);
delay(3000);
Serial.setDebugOutput(true);
app_start();
}
void app_start(void) {
esp_log_level_set(TAG,ESP_LOG_INFO) ;
Serial.println(" Arduino print");
ESP_LOGI(TAG," ESP print");
/
thank you