1
0
Fork 0
This commit is contained in:
Mikkel Jeppesen 2017-12-30 14:15:28 +01:00 committed by Jack Humbert
parent e9f44ee96d
commit 9fc3e26f70

View file

@ -151,16 +151,16 @@ void audio_init()
#ifdef C6_AUDIO #ifdef C6_AUDIO
DDRC |= _BV(PORTC6); DDRC |= _BV(PORTC6);
#else //#else
DDRC |= _BV(PORTC6); // DDRC |= _BV(PORTC6); // Why is PC6 being set as output low, if C6_audio isn't defined?
PORTC &= ~_BV(PORTC6); // PORTC &= ~_BV(PORTC6);
#endif #endif
#ifdef B5_AUDIO #ifdef B5_AUDIO
DDRB |= _BV(PORTB5); DDRB |= _BV(PORTB5);
#else //#else
DDRB |= _BV(PORTB5); // DDRB |= _BV(PORTB5); // Same as with PC6
PORTB &= ~_BV(PORTB5); // PORTB &= ~_BV(PORTB5);
#endif #endif
#ifdef C6_AUDIO #ifdef C6_AUDIO