From 0d0893a9b0f8303e32740ca3a032c1cd21a91333 Mon Sep 17 00:00:00 2001 From: William Miceli Date: Tue, 8 Jun 2021 17:21:42 -0400 Subject: [PATCH] Removed suggestion from comment --- Telem_Debug/Debug_UART-USB/usci.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Telem_Debug/Debug_UART-USB/usci.c b/Telem_Debug/Debug_UART-USB/usci.c index 6f15ec5..e17814e 100644 --- a/Telem_Debug/Debug_UART-USB/usci.c +++ b/Telem_Debug/Debug_UART-USB/usci.c @@ -71,11 +71,15 @@ void usci_A2_disableInterrupt(void){ void usci_A2_transmitChar(char charToTransmit){ while((UCA2IFG & UCTXIFG) == 0){ // If the USCI module is not yet ready for the next value to transmit, wait indefinitely - _NOP(); // Processor will do nothing until loop exits; should be converted to interrupt in the future + _NOP(); // Processor will do nothing until loop exits } UCA2TXBUF = charToTransmit; // When USCI module signals that it is ready, the next character value is moved into the transmit buffer } +char usci_A2_receiveChar(void){ + +} + /*************************************************************************/