Temp control working

Fix pid error
Remove pointless static keywords
This commit is contained in:
Ben V. Brown
2016-09-16 22:36:24 +10:00
parent 96bda69a0a
commit f355ff6c01
8 changed files with 31 additions and 134 deletions

View File

@@ -720,7 +720,7 @@ void Print_Integer(s32 data, u8 posi) {
char str[8];
Clear_Screen();
sprintf(str, "%d", data);
sprintf(str, "%ld", data);
Display_Str(posi, str);
}
/*******************************************************************************