From 72dc48807d4710f64ede63378080f5785eb3b343 Mon Sep 17 00:00:00 2001 From: Alejandro Guerrero Date: Mon, 23 Feb 2026 15:57:34 +0100 Subject: [PATCH] =?UTF-8?q?perf(serial):=20aumentar=20velocidad=20del=20pu?= =?UTF-8?q?erto=20a=202.000.000=20baudios=20Se=20eleva=20la=20tasa=20de=20?= =?UTF-8?q?transferencia=20del=20puerto=20Serie=20al=20m=C3=A1ximo=20r?= =?UTF-8?q?=C3=A9gimen=20estable=20soportado=20por=20el=20microcontrolador?= =?UTF-8?q?=20(2=20Mbps).=20Esta=20optimizaci=C3=B3n=20reduce=20dr=C3=A1st?= =?UTF-8?q?icamente=20el=20tiempo=20de=20bloqueo=20de=20la=20CPU=20al=20im?= =?UTF-8?q?primir=20mensajes=20de=20depuraci=C3=B3n,=20liberando=20ciclos?= =?UTF-8?q?=20de=20reloj=20que=20son=20vitales=20para=20garantizar=20la=20?= =?UTF-8?q?lectura=20ininterrumpida=20del=20bus=20CAN=20y=20soportar=20la?= =?UTF-8?q?=20futura=20carga=20de=20la=20pila=20Wi-Fi/UDP.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- G26-Telemetria.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/G26-Telemetria.ino b/G26-Telemetria.ino index 6f126f3..23bde5a 100644 --- a/G26-Telemetria.ino +++ b/G26-Telemetria.ino @@ -17,7 +17,7 @@ CAN can_interface; DataProcessor processor; void setup() { - Serial.begin(115200); + Serial.begin(2000000); delay(1000); Serial.println("\n--- G26 TELEMETRY: INICIO DE SISTEMA ---");