diff options
Diffstat (limited to 'keyboards/cu75/cu75.c')
-rw-r--r-- | keyboards/cu75/cu75.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/cu75/cu75.c b/keyboards/cu75/cu75.c index 80941df39..43600efad 100644 --- a/keyboards/cu75/cu75.c +++ b/keyboards/cu75/cu75.c | |||
@@ -28,12 +28,12 @@ void matrix_init_kb(void) | |||
28 | audio_init(); | 28 | audio_init(); |
29 | PLAY_SONG(test_sound); | 29 | PLAY_SONG(test_sound); |
30 | // Fix port B5 | 30 | // Fix port B5 |
31 | cbi(DDRB, 5); | 31 | setPinInput(B5); |
32 | sbi(PORTB, 5); | 32 | writePinHigh(B5); |
33 | #else | 33 | #else |
34 | // If we're not using the audio pin, drive it low | 34 | // If we're not using the audio pin, drive it low |
35 | sbi(DDRC, 6); | 35 | setPinOutput(C6); |
36 | cbi(PORTC, 6); | 36 | writePinLow(C6); |
37 | #endif | 37 | #endif |
38 | #ifdef ISSI_ENABLE | 38 | #ifdef ISSI_ENABLE |
39 | issi_init(); | 39 | issi_init(); |