From 4e54b1d1a552aede7080e7be1997499f164594a1 Mon Sep 17 00:00:00 2001 From: mikeller Date: Thu, 10 May 2018 01:32:36 +1200 Subject: [PATCH] Eliminated inefficient serial function calls at runtime. --- src/main/msp/msp_serial.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/msp/msp_serial.h b/src/main/msp/msp_serial.h index 37db1782b..1242f4c28 100644 --- a/src/main/msp/msp_serial.h +++ b/src/main/msp/msp_serial.h @@ -96,6 +96,7 @@ typedef struct __attribute__((packed)) { struct serialPort_s; typedef struct mspPort_s { struct serialPort_s *port; // null when port unused. + bool sharedWithTelemetry; timeMs_t lastActivityMs; mspPendingSystemRequest_e pendingRequest; mspState_e c_state;