From f4b56262b12e0ac82af33d45b7fa7757b6f0d34c Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Fri, 14 Nov 2025 13:46:02 +0300 Subject: [PATCH] Remove unneeded SERIAL_BAUDRATE define --- flix/flix.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flix/flix.ino b/flix/flix.ino index 0062f6d..8c0f260 100644 --- a/flix/flix.ino +++ b/flix/flix.ino @@ -7,7 +7,6 @@ #include "quaternion.h" #include "util.h" -#define SERIAL_BAUDRATE 115200 #define WIFI_ENABLED 1 float t = NAN; // current step time, s @@ -22,7 +21,7 @@ bool landed; // are we landed and stationary float motors[4]; // normalized motors thrust in range [0..1] void setup() { - Serial.begin(SERIAL_BAUDRATE); + Serial.begin(115200); print("Initializing flix\n"); disableBrownOut(); setupParameters();