Merge branch 'fix/test_app_ide_integration' into 'master'

Tools: Increase the delay before producing exception in the Monitor IDE test app

Closes IDFCI-1455

See merge request espressif/esp-idf!20008
pull/9803/head
Roland Dobai 2022-09-07 19:00:34 +08:00
commit 8c06bcaa9b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -13,6 +13,6 @@
void app_main(void)
{
int *p = (int *)4;
vTaskDelay(1000 / portTICK_PERIOD_MS);
vTaskDelay(2000 / portTICK_PERIOD_MS);
*p = 0;
}