Skip to content

Commit fec4a82

Browse files
authored
fix(uart_ci): typo in UART driver comment
1 parent 1e90775 commit fec4a82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/validation/uart/uart.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ void change_pins_test(void) {
377377
UARTTestConfig &config = *uart_test_configs[0];
378378
// pinMode will force enabling the internal pullup resistor (IDF 5.3.2 Change)
379379
pinMode(NEW_RX1, INPUT_PULLUP);
380-
// Detaching both pins will result in stoping the UART driver
380+
// Detaching both pins will result in stopping the UART driver
381381
// Only detach one of the pins
382382
config.serial.setPins(NEW_RX1, /*NEW_TX1*/ -1);
383383
TEST_ASSERT_EQUAL(NEW_RX1, uart_get_RxPin(config.uart_num));
@@ -389,7 +389,7 @@ void change_pins_test(void) {
389389
for (int i = 0; i < TEST_UART_NUM; i++) {
390390
UARTTestConfig &config = *uart_test_configs[i];
391391
UARTTestConfig &next_uart = *uart_test_configs[(i + 1) % TEST_UART_NUM];
392-
// Detaching both pins will result in stoping the UART driver
392+
// Detaching both pins will result in stopping the UART driver
393393
// Only detach one of the pins
394394
config.serial.setPins(next_uart.default_rx_pin, /*next_uart.default_tx_pin*/ -1);
395395
TEST_ASSERT_EQUAL(uart_get_RxPin(config.uart_num), next_uart.default_rx_pin);
@@ -454,7 +454,7 @@ void periman_test(void) {
454454

455455
for (auto *ref : uart_test_configs) {
456456
UARTTestConfig &config = *ref;
457-
// Detaching both pins will result in stoping the UART driver
457+
// Detaching both pins will result in stopping the UART driver
458458
// Only detach one of the pins
459459
Wire.begin(config.default_rx_pin, /*config.default_tx_pin*/ -1);
460460
config.recv_msg = "";

0 commit comments

Comments
 (0)