From bba1efc2c116f6b98344edd44735e28288e6910e Mon Sep 17 00:00:00 2001 From: William Miceli Date: Fri, 14 May 2021 15:21:03 -0400 Subject: [PATCH] Comment fixes --- Telem_Debug/Debug1/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Telem_Debug/Debug1/main.c b/Telem_Debug/Debug1/main.c index 348593b..381ea10 100644 --- a/Telem_Debug/Debug1/main.c +++ b/Telem_Debug/Debug1/main.c @@ -60,14 +60,14 @@ int main(void) { } /* -* Initialise Timer B +* Initialize Timer B * - Provides timer tick timebase at 100 Hz */ void timerB_init( void ) { TBCTL = CNTL_0 | TBSSEL_1 | ID_3 | TBCLR; // ACLK/8, clear TBR TBCCR0 = (ACLK_RATE/8/TICK_RATE); // Set timer to count to this value = TICK_RATE overflow - TBCCTL0 = CCIE; // Enable CCR0 interrrupt + TBCCTL0 = CCIE; // Enable CCR0 interrupt TBCTL |= MC_1; // Set timer to 'up' count mode } @@ -77,7 +77,7 @@ void timerB_init( void ) * - Sets Time_Flag variable */ /* -* GNU interropt symantics +* GNU interrupt semantics * interrupt(TIMERB0_VECTOR) timer_b0(void) */ #pragma vector = TIMERB0_VECTOR @@ -94,7 +94,7 @@ __interrupt void timer_b0(void) status_flag = TRUE; } - // Periodic CAN Satus Transmission + // Periodic CAN Status Transmission if(send_can) cancomm_count--; if( cancomm_count == 0 ) {