Search found 14 matches

by oliverbru
Thu Sep 26, 2019 2:18 pm
Forum: General Discussion
Topic: ESP_LOG giving a panic error
Replies: 7
Views: 7863

Re: ESP_LOG giving a panic error

Code: Select all

static void IRAM_ATTR gpio_isr_handler()
{
    ESP_LOGI("test", "PRESSED !");
}
It gives the same panic error :-(

PS : I am newbie.

Thanks
by oliverbru
Thu Sep 26, 2019 9:28 am
Forum: General Discussion
Topic: ESP_LOG giving a panic error
Replies: 7
Views: 7863

Re: ESP_LOG giving a panic error

It works.
Thanks[
by oliverbru
Thu Sep 26, 2019 9:19 am
Forum: General Discussion
Topic: ESP_LOG giving a panic error
Replies: 7
Views: 7863

Re: ESP_LOG giving a panic error

It is working.
Thanks a lot :-)
by oliverbru
Thu Sep 26, 2019 8:59 am
Forum: General Discussion
Topic: ESP_LOG giving a panic error
Replies: 7
Views: 7863

ESP_LOG giving a panic error

#include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_system.h" #include "driver/gpio.h" #include "esp_log.h" #include "sdkconfig.h" #define BLINK_GPIO_GREEN 25 #define BUTTON GPIO_NUM_36 #define ESP_INTR_FLAG_DEFAULT 0 void blink_task(void *pvParameter) { while (1) { ESP_LOGI("te...