Использую platformio с espressif esp32 3.3.0.
Код:
#include <WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
void setup()
{
Serial.begin(115200);
Serial.setDebugOutput(0);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
}
void loop()
{
}
Не смотря на вроде отключенную отладку, в консоль иногда пишется что-то явно отладочное.
Типа dhcp ack..... (сейчас не вспомню полностью, не записал), видимо китаец отлаживал получение ip.
Как полностью отключить этот беспредел?)
Код:
#include <WiFi.h>
const char* ssid = "your-ssid";
const char* password = "your-password";
void setup()
{
Serial.begin(115200);
Serial.setDebugOutput(0);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
}
void loop()
{
}
Не смотря на вроде отключенную отладку, в консоль иногда пишется что-то явно отладочное.
Типа dhcp ack..... (сейчас не вспомню полностью, не записал), видимо китаец отлаживал получение ip.
Как полностью отключить этот беспредел?)