Revert "teleterra: hack to leave amp on all the time"
[fw/altos] / src / ao_audio.c
index 32a29a27f988b113cb296963513a2f9c0791989a..fa04175b0f9ea86ba996e2347287ca33b663fb95 100644 (file)
@@ -359,7 +359,7 @@ ao_audio_send(__xdata uint8_t *samples, uint16_t nsamples) __reentrant
        /*
         * Turn off the audio amp
         */
-       P2_4 = 1;
+       P2_4 = 0;
 #endif
        ao_mutex_put(&ao_audio_mutex);
 }
@@ -386,7 +386,7 @@ ao_audio_init(void)
        PERCFG = (PERCFG & ~PERCFG_T4CFG_ALT_MASK) | PERCFG_T4CFG_ALT_2;
 
 #if AUDIO_STANDBY_ON_P2_4
-       P2_4 = 1;
+       P2_4 = 0;
        P2SEL &= ~P2SEL_SELP2_4_PERIPHERAL;
        P2DIR |= (1 << 4);
 #endif