From e4fa25a61e093bce0fe623c7fab77572a491fac4 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Mon, 15 May 2023 18:31:22 +0100 Subject: [PATCH] Remove unused #include and component require from fatal component --- components/fatal/CMakeLists.txt | 2 +- components/fatal/fatal.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/components/fatal/CMakeLists.txt b/components/fatal/CMakeLists.txt index 20f84eb..fa18799 100644 --- a/components/fatal/CMakeLists.txt +++ b/components/fatal/CMakeLists.txt @@ -1,5 +1,5 @@ idf_component_register( SRCS "fatal.c" INCLUDE_DIRS "." - REQUIRES esp_system log + REQUIRES log ) diff --git a/components/fatal/fatal.c b/components/fatal/fatal.c index 7864123..fb2663a 100644 --- a/components/fatal/fatal.c +++ b/components/fatal/fatal.c @@ -6,7 +6,6 @@ #include "fatal.h" #include "esp_log.h" -#include "esp_system.h" #define TAG "Fatal"