From c4ff8473557cb8c2879d7e6acb32a09e76213ff8 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 20 Oct 2023 14:49:39 +0200 Subject: [PATCH] typo --- client/src/comms.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/comms.h b/client/src/comms.h index 3d281f026..9f4d6cd60 100644 --- a/client/src/comms.h +++ b/client/src/comms.h @@ -60,7 +60,7 @@ typedef enum { PM3_UDPv4, PM3_UDPv6, PM3_NONE, -} CommunicationProtol_t; +} CommunicationProtocol_t; typedef struct { bool run; // If TRUE, continue running the uart_communication thread @@ -71,7 +71,7 @@ typedef struct { // "Session" flag, to tell via which interface next msgs are sent: USB or FPC USART bool send_via_fpc_usart; // to tell if we are using TCP/UDP/TCPv6 - CommunicationProtol_t send_via_ip; + CommunicationProtocol_t send_via_ip; // To memorise baudrate uint32_t uart_speed; uint16_t last_command;