test_utils: update for esp32s2beta

This commit is contained in:
Ivan Grokhotkov
2019-06-12 16:10:11 +08:00
parent aeb62b5337
commit 25a383c521
5 changed files with 3 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
set(COMPONENT_SRCS "ref_clock.c"
set(COMPONENT_SRCS "ref_clock_${CONFIG_IDF_TARGET}.c"
"test_runner.c"
"test_utils.c")
set(COMPONENT_ADD_INCLUDEDIRS include)

View File

@@ -0,0 +1 @@
COMPONENT_OBJEXCLUDE := ref_clock_esp32s2beta.o

View File

@@ -35,8 +35,6 @@
#include "soc/pcnt_periph.h"
#include "soc/gpio_periph.h"
#include "soc/dport_reg.h"
#include "esp32/rom/gpio.h"
#include "esp32/rom/ets_sys.h"
#include "esp_intr_alloc.h"
#include "freertos/FreeRTOS.h"
#include "driver/periph_ctrl.h"

View File

@@ -0,0 +1 @@
#warning "unit_test_app ref_clock not implemented for esp32s2beta"

View File

@@ -15,8 +15,6 @@
#include <string.h>
#include "unity.h"
#include "test_utils.h"
#include "esp32/rom/ets_sys.h"
#include "esp32/rom/uart.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "tcpip_adapter.h"