Skip to content

Commit

Permalink
pio: disable qio mode, my board stoped working with it
Browse files Browse the repository at this point in the history
  • Loading branch information
vooon committed Sep 14, 2021
1 parent 0640d2f commit 26925e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ platform = ${common.platform}
board = esp32dev
;board = lolin32
framework = arduino
board_build.flash_mode = qio
;board_build.flash_mode = qio
board_build.f_cpu = 160000000L
;board_build.f_cpu = 240000000L
board_build.partitions = min_spiffs.csv
Expand Down
1 change: 1 addition & 0 deletions src/mqtt_commander.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ static void pub_stats()
root["uptime"] = uptime::uptime_ms() / 1000.0;
root["wifi_rssi"] = WiFi.RSSI();
root["wifi_ssid"] = WiFi.SSID();
root["ipaddr"] = WiFi.localIP().toString();
root["hall_sensor"] = hallRead();
root["cpu_temp"] = t_c;
root["ble_adv_cnt"] = ble::raw_advertise_counter;
Expand Down

0 comments on commit 26925e9

Please sign in to comment.