make style

This commit is contained in:
Philippe Teuwen 2019-08-07 12:12:44 +02:00
commit 9b44590f8d
2 changed files with 2 additions and 2 deletions

View file

@ -433,7 +433,7 @@ void SendStatus(void) {
Dbprintf(" ToSend BUFFERSIZE.......%d", TOSEND_BUFFER_SIZE);
while ((AT91C_BASE_PMC->PMC_MCFR & AT91C_CKGR_MAINRDY) == 0); // Wait for MAINF value to become available...
uint16_t mainf = AT91C_BASE_PMC->PMC_MCFR & AT91C_CKGR_MAINF; // Get # main clocks within 16 slow clocks
Dbprintf(" Slow clock..............%d Hz", (16*MAINCK) / mainf);
Dbprintf(" Slow clock..............%d Hz", (16 * MAINCK) / mainf);
DbpString(_BLUE_("Installed StandAlone Mode"));
ModInfo();

View file

@ -830,7 +830,7 @@ int CmdTraceList(const char *Cmd) {
ClearAuthData();
while (tracepos < traceLen) {
tracepos = printTraceLine(tracepos, traceLen, trace, protocol, showWaitCycles, markCRCBytes);
if (kbd_enter_pressed())
break;
}