1 /* Monitor-IDE integration test
2 
3    This example code is in the Public Domain (or CC0 licensed, at your option.)
4 
5    Unless required by applicable law or agreed to in writing, this
6    software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
7    CONDITIONS OF ANY KIND, either express or implied.
8 */
9 #include "freertos/FreeRTOS.h"
10 #include "freertos/task.h"
11 #include "esp_system.h"
12 
app_main(void)13 void app_main(void)
14 {
15     int *p = (int *)4;
16     vTaskDelay(1000 / portTICK_PERIOD_MS);
17     *p = 0;
18 }
19