change SI4735 libraries on aresq aq1 si4732 sdr radio fix the SPEAKER no sound bug

1.jpg
First change C:UsersAdministratorDocumentsArduinolibrariesSI4735-masterSI4735.h

/**
 * @ingroup group18 MCU External Audio Mute 
 * 
 * @brief Sets the Hardware Audio Mute
 * @details Turns the Hardware audio mute on or off
 * 
 * @see setAudioMuteMcuPin
 * 
 * @param on  True or false
 */
inline void setHardwareAudioMute(bool on)
{
    if(on){
    digitalWrite(audioMuteMcuPin, LOW);//Reverse the 27 MUTE pin connect PAM8406
    }else{
    digitalWrite(audioMuteMcuPin, HIGH);//Reverse the 27 MUTE pin connect PAM8406
    }
    delayMicroseconds(300);
}

then change SI4735_2.8_TFT_SI5351_V4.0_AQ1's code you like the SPEAKER work now
https://www.mmdvm.club/index.php/aq1.html

标签:none

已有 2 条评论

  1. Andrea Andrea

    I've purchase a AQ1 on Aliexpress and in it's splash screen show a 4.1 version sw: What are the differences between 4.1 and 4.3 ? What sw can i use for upgrade into the 4.3 with the file in .bin format ?
    THANK'S.

    1. mmdvm.club only have V4.0 now.

添加新评论