aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bpiphany
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-02-06 16:56:13 +0000
committerGitHub <noreply@github.com>2021-02-06 16:56:13 +0000
commitf5a38b95c12d100ab74acfd603502c66e0d0911d (patch)
treed752c81b42539959c3b69ff70d7c00c0cb666120 /keyboards/bpiphany
parentc50ecb4bb053a98dc8541f29e3a98f149340980a (diff)
downloadqmk_firmware-f5a38b95c12d100ab74acfd603502c66e0d0911d.tar.gz
qmk_firmware-f5a38b95c12d100ab74acfd603502c66e0d0911d.zip
Remove legacy print backward compatiblitly (#11805)
* Remove legacy print backward compatiblitly * Remove legacy print backward compatiblitly - core * revert comment changes
Diffstat (limited to 'keyboards/bpiphany')
-rw-r--r--keyboards/bpiphany/pegasushoof/2013/matrix.c4
-rw-r--r--keyboards/bpiphany/pegasushoof/2015/matrix.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2013/matrix.c b/keyboards/bpiphany/pegasushoof/2013/matrix.c
index a670d5382..037f323c0 100644
--- a/keyboards/bpiphany/pegasushoof/2013/matrix.c
+++ b/keyboards/bpiphany/pegasushoof/2013/matrix.c
@@ -133,8 +133,8 @@ void matrix_print(void)
133{ 133{
134 print("\nr/c 0123456789ABCDEF\n"); 134 print("\nr/c 0123456789ABCDEF\n");
135 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 135 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
136 phex(row); print(": "); 136 print_hex8(row); print(": ");
137 pbin_reverse16(matrix_get_row(row)); 137 print_bin_reverse16(matrix_get_row(row));
138 print("\n"); 138 print("\n");
139 } 139 }
140} 140}
diff --git a/keyboards/bpiphany/pegasushoof/2015/matrix.c b/keyboards/bpiphany/pegasushoof/2015/matrix.c
index db0399354..42c5da3bc 100644
--- a/keyboards/bpiphany/pegasushoof/2015/matrix.c
+++ b/keyboards/bpiphany/pegasushoof/2015/matrix.c
@@ -93,8 +93,8 @@ void matrix_print(void)
93{ 93{
94 print("\nr/c 0123456789ABCDEF\n"); 94 print("\nr/c 0123456789ABCDEF\n");
95 for (uint8_t row = 0; row < matrix_rows(); row++) { 95 for (uint8_t row = 0; row < matrix_rows(); row++) {
96 phex(row); print(": "); 96 print_hex8(row); print(": ");
97 pbin_reverse16(matrix_get_row(row)); 97 print_bin_reverse16(matrix_get_row(row));
98 print("\n"); 98 print("\n");
99 } 99 }
100} 100}