Solved. To delete
Posted: Thu Nov 12, 2020 7:20 pm
Im trying the next code.
Breakpoint on "j" hit once, and never more.
What im doing wrong?
Code: Select all
static uint8_t i = 0;
volatile uint8_t j = 0;
if(!i) {
j++;
i = 1;
}
esp_restart();
What im doing wrong?