Remove legacy print backward compatiblitly (#11805)

* Remove legacy print backward compatiblitly

* Remove legacy print backward compatiblitly - core

* revert comment changes
This commit is contained in:
Joel Challis 2021-02-06 16:56:13 +00:00 committed by GitHub
parent c50ecb4bb0
commit f5a38b95c1
Failed to generate hash of commit
71 changed files with 107 additions and 117 deletions

View file

@ -210,7 +210,7 @@ void matrix_print(void)
print_matrix_header();
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
phex(row); print(": ");
print_hex8(row); print(": ");
print_matrix_row(row);
print("\n");
}