Merge branch 'fix/test_app_ide_integration_v4.4' into 'release/v4.4'

Tools: Increase the delay before producing exception in the Monitor IDE test app (v4.4)

See merge request espressif/esp-idf!20013
This commit is contained in:
Roland Dobai 2022-09-07 22:22:35 +08:00
commit 89c55f954a

View File

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