VedantParanjape / esp-wifi-logger

ESP32 WiFi Logger component

Home Page:https://ve0x10.in/esp-wifi-logger/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change global definition to static

VedantParanjape opened this issue · comments

QueueHandle_t wifi_logger_queue;

It's bad practise to define variables globally. Queuehandle is defined globally, change it to static and define in .c header file.