From 6d0c971ec9b97dd685aa0335d95e2101a9973215 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Fri, 2 Dec 2022 22:34:26 -0800 Subject: [PATCH] typo --- firmware/console/binary/tunerstudio_io_serial.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/firmware/console/binary/tunerstudio_io_serial.cpp b/firmware/console/binary/tunerstudio_io_serial.cpp index 1e8fc6d..86377b3 100644 --- a/firmware/console/binary/tunerstudio_io_serial.cpp +++ b/firmware/console/binary/tunerstudio_io_serial.cpp @@ -118,48 +118,48 @@ int SerialTsChannel::start(uint32_t baud) { chprintf((BaseSequentialStream *)m_driver, "AT+VERSION\r\n"); len = bt_read_line(tmp, sizeof(tmp)); if (len < 0) { - /* retrty */ + /* retry */ continue; } /* Reset settings to defaults */ chprintf((BaseSequentialStream *)m_driver, "AT+DEFAULT\r\n"); if (bt_wait_ok() != 0) { - /* retrty */ + /* retry */ continue; } /* SPP Broadcast name: up to 18 bytes */ chprintf((BaseSequentialStream *)m_driver, "AT+NAME%s\r\n", BT_BROADCAST_NAME); if (bt_wait_ok() != 0) { - /* retrty */ + /* retry */ continue; } /* BLE Broadcast name: up to 18 bytes */ chprintf((BaseSequentialStream *)m_driver, "AT+NAMB%s\r\n", BT_BROADCAST_NAME " BLE"); if (bt_wait_ok() != 0) { - /* retrty */ + /* retry */ continue; } /* SPP connection with no password */ chprintf((BaseSequentialStream *)m_driver, "AT+TYPE%d\r\n", 0); if (bt_wait_ok() != 0) { - /* retrty */ + /* retry */ continue; } /* Disable serial port status output */ chprintf((BaseSequentialStream *)m_driver, "AT+ENLOG%d\r\n", 0); if (bt_wait_ok() != 0) { - /* retrty */ + /* retry */ continue; } chprintf((BaseSequentialStream *)m_driver, "AT+BAUD%d\r\n", baudRateCodes[baudIdx]); if (bt_wait_ok() != 0) { - /* retrty */ + /* retry */ continue; }