From ba685edf45fd452c57f55240891b5595d9007874 Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Thu, 16 May 2024 17:56:16 +0200 Subject: [PATCH] refactor(mqtt): removed unused includes from tcp example --- examples/protocols/mqtt/tcp/main/app_main.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/examples/protocols/mqtt/tcp/main/app_main.c b/examples/protocols/mqtt/tcp/main/app_main.c index 6fe652b5b7..9a13adb8b0 100644 --- a/examples/protocols/mqtt/tcp/main/app_main.c +++ b/examples/protocols/mqtt/tcp/main/app_main.c @@ -9,24 +9,15 @@ #include #include -#include #include -#include "esp_wifi.h" +#include +#include #include "esp_system.h" #include "nvs_flash.h" #include "esp_event.h" #include "esp_netif.h" #include "protocol_examples_common.h" -#include "freertos/FreeRTOS.h" -#include "freertos/task.h" -#include "freertos/semphr.h" -#include "freertos/queue.h" - -#include "lwip/sockets.h" -#include "lwip/dns.h" -#include "lwip/netdb.h" - #include "esp_log.h" #include "mqtt_client.h"