Changed the baud rate of the serial port to 115200 to match the ESP32 boot loader.

This commit is contained in:
Fabian Schlenz 2019-11-29 06:14:45 +01:00
parent 571e969bc4
commit 076f0e9dfd
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ upload_speed = 512000
build_flags=!./build_version.sh build_flags=!./build_version.sh
lib_deps = ${extra.lib_deps} lib_deps = ${extra.lib_deps}
upload_port = /dev/cu.SLAB_USBtoUART upload_port = /dev/cu.SLAB_USBtoUART
monitor_speed = 74480 monitor_speed = 115200
board_build.embed_txtfiles = src/index.html board_build.embed_txtfiles = src/index.html
board_build.partitions = partitions.csv board_build.partitions = partitions.csv
;monitor_port = /dev/cu.wchusbserial1420 ;monitor_port = /dev/cu.wchusbserial1420

View File

@ -71,7 +71,7 @@ void wifi_connect() {
void setup() { void setup() {
delay(500); delay(500);
Serial.begin(74880); Serial.begin(115200);
Serial.println("Starting..."); Serial.println("Starting...");
Serial.println("Started."); Serial.println("Started.");
INFO("Starting.\n"); INFO("Starting.\n");