Fix bad function call

This commit is contained in:
Allen Hill
2026-05-10 18:55:23 -07:00
parent a0071ea862
commit 1e715d1daa
2 changed files with 10 additions and 10 deletions
+1 -2
View File
@@ -58,8 +58,7 @@ void RS232_Init(void) {
ISR(USART0_RXC_vect) {
// Store received character to the End of Buffer
RS232_RxCharBuffer[RS232_RxCharEnd] = USART0_RXDATAL;
RS232_RxCharEnd++;
RS232_RxCharBuffer[RS232_RxCharEnd++] = USART0_RXDATAL;
}
void RS232_SendByte(uint8_t Data) {