When setting ESP32_UDP_LOGGER_ENABLED in menuconfig to disabled, we get build errors about undefined CONFIG values. The root cause for this is this part in esp32_udp_logger.c
#ifndef CONFIG_ESP32_UDP_LOGGER_ENABLED
#define CONFIG_ESP32_UDP_LOGGER_ENABLED 1
#endif
This will cause the component to be always enabled no matter what we set in menuconfig.
When setting
ESP32_UDP_LOGGER_ENABLEDin menuconfig to disabled, we get build errors about undefined CONFIG values. The root cause for this is this part inesp32_udp_logger.cThis will cause the component to be always enabled no matter what we set in menuconfig.