Просмотр исходного кода

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
Roland Dobai 3 лет назад
Родитель
Сommit
8c06bcaa9b
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      tools/test_apps/system/monitor_ide_integration/main/main.c

+ 1 - 1
tools/test_apps/system/monitor_ide_integration/main/main.c

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