diff options
Diffstat (limited to 'keyboards/helix/pico')
-rw-r--r-- | keyboards/helix/pico/config.h | 2 | ||||
-rw-r--r-- | keyboards/helix/pico/matrix.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/helix/pico/config.h b/keyboards/helix/pico/config.h index 3938db30e6..b01fd3a001 100644 --- a/keyboards/helix/pico/config.h +++ b/keyboards/helix/pico/config.h @@ -77,7 +77,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* Audio */ #ifdef AUDIO_ENABLE - #define B5_AUDIO + #define AUDIO_PIN B5 #endif /* ws2812 RGB LED */ diff --git a/keyboards/helix/pico/matrix.c b/keyboards/helix/pico/matrix.c index 27170e0394..b18213d846 100644 --- a/keyboards/helix/pico/matrix.c +++ b/keyboards/helix/pico/matrix.c @@ -295,8 +295,8 @@ void matrix_print(void) { print("\nr/c 0123456789ABCDEF\n"); for (uint8_t row = 0; row < MATRIX_ROWS; row++) { - phex(row); print(": "); - pbin_reverse16(matrix_get_row(row)); + print_hex8(row); print(": "); + print_bin_reverse16(matrix_get_row(row)); print("\n"); } } |