Skip to content

Commit

Permalink
Merge branch 'refactor/mqtt_remove_unused_includes' into 'master'
Browse files Browse the repository at this point in the history
refactor(mqtt): removed unused includes from tcp example

See merge request espressif/esp-idf!30914
  • Loading branch information
0xjakob committed May 17, 2024
2 parents 895e6d5 + ba685ed commit 8508c85
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions examples/protocols/mqtt/tcp/main/app_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,15 @@

#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <string.h>
#include "esp_wifi.h"
#include <stdlib.h>
#include <inttypes.h>
#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"

Expand Down

0 comments on commit 8508c85

Please sign in to comment.