use global Buf everywhere for debugging

This commit is contained in:
Jeff Wang
2019-03-28 00:41:54 -04:00
parent 91b7b82462
commit bdecc32b86
3 changed files with 46 additions and 46 deletions

View File

@ -81,7 +81,7 @@ void Timer0Init(void)
}
char buf[17];
char Buf[17];
/*********************************************/
int main()
@ -122,9 +122,9 @@ int main()
LCD_OutString(" ");
} else if (SecCount < 10){
TERMIO_PutChar(' ');
LCD_OutString(u32str(SecCount, buf, 10));
LCD_OutString(u32str(SecCount, Buf, 10));
} else {
LCD_OutString(u32str(SecCount, buf, 10));
LCD_OutString(u32str(SecCount, Buf, 10));
}
///new keys