Hi, the PlatformIO is recognizing that my code need bluetooth module because in my code i have this:
#ifdef ENABLE_BLE_BEACON
#include "BLEDevice.h"
#include "BLEServer.h"
#include "BLEBeacon.h"
#endif
The problem here is that these includes are guard by a definition, but platformio doesnt respect that this definition is not defined. Then to low my firmware size i need to comment or delete this code.