mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
Improve matrix print for Phantom.
This commit is contained in:
parent
a505dafe59
commit
71fabf72e0
1 changed files with 2 additions and 2 deletions
|
@ -220,10 +220,10 @@ matrix_row_t matrix_get_row(uint8_t row)
|
|||
|
||||
void matrix_print(void)
|
||||
{
|
||||
print("\nr/c 01234567\n");
|
||||
print("\nr/c 0123456789ABCDEF\n");
|
||||
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
|
||||
phex(row); print(": ");
|
||||
pbin_reverse(matrix_get_row(row));
|
||||
print_bin_reverse32(matrix_get_row(row));
|
||||
print("\n");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue