Skip to content

Commit 293d0bf

Browse files
authored
fix(uart_ci): fixes a couple typos in commentatries
1 parent a304ea1 commit 293d0bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tests/validation/uart/uart.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public:
5353
: uart_num(num), serial(serial_ref), peeked_char(-1), default_rx_pin(rx_pin), default_tx_pin(tx_pin), recv_msg("") {}
5454

5555
void begin(unsigned long baudrate) {
56-
// pinMode will force enabing the internal pullup resistor (IDF 5.3.2 Change)
56+
// pinMode will force enabling the internal pullup resistor (IDF 5.3.2 Change)
5757
pinMode(default_rx_pin, INPUT_PULLUP);
5858
serial.begin(baudrate, SERIAL_8N1, default_rx_pin, default_tx_pin);
5959
while (!serial) {
@@ -367,7 +367,7 @@ void change_pins_test(void) {
367367

368368
if (TEST_UART_NUM == 1) {
369369
UARTTestConfig &config = *uart_test_configs[0];
370-
// pinMode will force enabing the internal pullup resistor (IDF 5.3.2 Change)
370+
// pinMode will force enabling the internal pullup resistor (IDF 5.3.2 Change)
371371
pinMode(NEW_RX1, INPUT_PULLUP);
372372
config.serial.setPins(NEW_RX1, NEW_TX1);
373373
TEST_ASSERT_EQUAL(NEW_RX1, uart_get_RxPin(config.uart_num));

0 commit comments

Comments
 (0)