mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
21 lines
340 B
C
21 lines
340 B
C
/*
|
|
Tests for the interrupt watchdog
|
|
*/
|
|
|
|
#include <esp_types.h>
|
|
#include <stdio.h>
|
|
#include "rom/ets_sys.h"
|
|
#include "unity.h"
|
|
#include "soc/dport_reg.h"
|
|
#include "soc/io_mux_reg.h"
|
|
#include "esp_intr_alloc.h"
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
|
|
|
|
TEST_CASE("Int wdt test", "[esp32][ignore]")
|
|
{
|
|
portENTER_CRITICAL_NESTED();
|
|
while(1);
|
|
}
|