소스 검색

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 년 전
부모
커밋
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)
 void app_main(void)
 {
 {
     int *p = (int *)4;
     int *p = (int *)4;
-    vTaskDelay(1000 / portTICK_PERIOD_MS);
+    vTaskDelay(2000 / portTICK_PERIOD_MS);
     *p = 0;
     *p = 0;
 }
 }