HI i am using esp32. After uploading my code code, my esp32 is continuously resetting.
The out put from serial monitor is as follows
rst:0x8 (TG1WDT_SYS_RESET),boot:0x1b (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0030,len:1184
load:0x40078000,len:13260
load:0x40080400,len:3028
entry 0x400805e4
ets Jun 8 2016 00:22:57
so what i did next is i just uploaded basic code like blinking of an led but still same issue.
what to do?
To facilitate our understanding and help, using the tags by clicking on " < code > " in the toolbar, post your code.
I did not understand ruilviana.
Post here your code,
to facilitate our understanding and help,
but post
using the tags by clicking on " < code > " in the toolbar.
ok
void setup()
{
// initialize digital pin LED_BUILTIN as an output.
pinMode(13, OUTPUT);
}
// the loop function runs over and over again forever
void loop()
{
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
i think it is not the code the problem.
no matter any code i upload i am getting same error.
the error is
rst:0x8 (TG1WDT_SYS_RESET),boot:0x1b (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0030,len:1184
load:0x40078000,len:13260
load:0x40080400,len:3028
entry 0x400805e4
ets Jun 8 2016 00:22:57
any one please look into my problem please
system
Closed
September 26, 2024, 9:29am
7
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.