summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Palacios <[email protected]>2024-02-08 16:25:41 -0600
committerJerry Palacios <[email protected]>2024-02-08 16:25:41 -0600
commit5b762e189ce1ab50a861d65895a41486b098cce8 (patch)
tree47e80c0034fd4d1301ca578b0ca5287e60c38e2a
parent2c766c4dafa6c44f5c29f833443e13ca9b5c1f90 (diff)
uart rx disabled
-rw-r--r--hw/bsp/mcxa/family.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/bsp/mcxa/family.c b/hw/bsp/mcxa/family.c
index 670542892..9796fbb74 100644
--- a/hw/bsp/mcxa/family.c
+++ b/hw/bsp/mcxa/family.c
@@ -95,7 +95,7 @@ void board_init(void)
LPUART_GetDefaultConfig(&uart_config);
uart_config.baudRate_Bps = 115200;
uart_config.enableTx = true;
- uart_config.enableRx = true;
+ uart_config.enableRx = false;
LPUART_Init(UART_DEV, &uart_config, 12000000u);
@@ -161,3 +161,4 @@ uint32_t board_millis(void)
return system_ticks;
}
#endif
+ \ No newline at end of file