fix lcd indexing, clear to end of line function
This commit is contained in:
@ -24,6 +24,7 @@ char* u32str(uint32_t x, char* buf, uint8_t base)
|
||||
//corner case
|
||||
if (x == 0){
|
||||
buf[i] = '0';
|
||||
i++;
|
||||
}
|
||||
//get reversed string
|
||||
while(x > 0){
|
||||
|
Reference in New Issue
Block a user