tc_etu.c: newline in printout inserted

This commit is contained in:
Christina Quast 2015-04-06 19:19:16 +02:00
parent 82ba0ac6d8
commit ca39e16797
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ void Timer_Init()
/** Configure TC for a $ARG1 Hz frequency and trigger on RC compare. */
TC_FindMckDivisor( 8, BOARD_MCK, &div, &tcclks, BOARD_MCK );
TRACE_INFO("Chosen div, tcclk: %d, %d", div, tcclks);
TRACE_INFO("Chosen div, tcclk: %d, %d\r\n", div, tcclks);
/* TC_CMR: TC Channel Mode Register: Capture Mode */
/* CPCTRG: RC Compare resets the counter and starts the counter clock. */
TC_Configure( TC0, 0, tcclks | TC_CMR_CPCTRG );