From 45763ceac8cb8411dfa34eab325851a48ef4f13a Mon Sep 17 00:00:00 2001 From: Pascal Lais Date: Mon, 3 Aug 2020 15:56:30 +0200 Subject: [PATCH] Update 'src/sys.cpp' Init Serial with baudrate 115200 --- src/sys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys.cpp b/src/sys.cpp index e515857..2130984 100644 --- a/src/sys.cpp +++ b/src/sys.cpp @@ -42,7 +42,7 @@ void sysInit() //----------------------------------------------------------------------------- { - Serial.begin(9600); + Serial.begin(115200); pinMode(LED_BUILTIN, OUTPUT); opstInit(OPST_PIN); }