static ETSTimer testTimer1;
void user_init(void)
{
// Configure the UART
uart_init(BIT_RATE_115200, BIT_RATE_115200);
os_timer_disarm(&testTimer1);
os_timer_arm(&testTimer1, 1000, 1);
}
The timer shouldn't freeze up the device, so why does the watchdog keep resetting it continuously?
Thanks