change pling and way to mute

This commit is contained in:
2024-04-26 12:55:21 +02:00
parent 1f807cdb7c
commit 5de2761fde
3 changed files with 13 additions and 35 deletions

View File

@ -8,15 +8,15 @@ void muteInit() {
P1DIR |= BIT6;
// initially, mute
P1OUT |= BIT6;
}
void mute() {
P1OUT |= BIT6;
}
void unMute() {
P1OUT &= ~BIT6;
}
void mute() {
P1OUT &= ~BIT6;
}
void unMute() {
P1OUT |= BIT6;
}