From 8d30742bb872efc6e4b5a9a6071a2e2b4144a45a Mon Sep 17 00:00:00 2001 From: William Miceli Date: Mon, 7 Jun 2021 18:36:17 -0400 Subject: [PATCH] Clarified comments --- Telem_Debug/Debug_UART-USB/usci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telem_Debug/Debug_UART-USB/usci.c b/Telem_Debug/Debug_UART-USB/usci.c index dd2722d..190e901 100644 --- a/Telem_Debug/Debug_UART-USB/usci.c +++ b/Telem_Debug/Debug_UART-USB/usci.c @@ -31,7 +31,7 @@ void usci_A1_init(void){ /*************************************************************************/ void usci_A2_init(void){ - UCA2CTL1 |= UCSWRST; // Software Reset Enable - Set high, disabling the USCI module; USCI configuration changes can only be made when the UCSWRST bit = 1 + UCA2CTL1 |= UCSWRST; // Software Reset Enable - Set high, disabling the USCI module; Changes to USCI configuration registers can only be made when the UCSWRST bit = 1 UCA2CTL1 &= ~0b11000000; // Reset both UCSSELx bits so the USCI Clock Source Select bits are more predictable UCA2CTL1 |= UCSSEL__SMCLK; // USCI Clock Source Select - SMCLK UCA2CTL1 &= ~UCRXEIE; // Receive Erroneous-Character Interrupt Enable - Disabled