Allow to print larger integers
Use `uint32_t` instead of `uint8_t` when printing integers with `lcd_write_integer_page()`.
This commit is contained in:
parent
22095d6e78
commit
dada6fe5d4
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ static void lcd_write_string_page(const char* string,
|
|||
}
|
||||
}
|
||||
|
||||
static void lcd_write_integer_page(const uint8_t integer,
|
||||
static void lcd_write_integer_page(const uint32_t integer,
|
||||
const uint8_t digits,
|
||||
const uint8_t page,
|
||||
const bool invert) {
|
||||
|
|
Loading…
Reference in a new issue