¿ªÔÆÌåÓýWell¡. What I can tell you¡ working backwards towards the code, ?TX_BPF_SEL and RX_BPF_SEL, or GPA0 and GPA1 for U15 which is I2C address Hex 0x25 on WIRE2.? ?GPA0: HI = BPF In Circuit During TX, LO = Bypass. And GPA1: HI = BPF In Circuit During RX, LO = Bypass.? ? Now in the code (which I do not know but Al and Oliver do), Somewhere in the code is in this (I can¡¯t focus tonight but will do it tomorrow): ? #define LPF_BOARD_MCP23017_ADDR 0x25 #define TXSTATE 1 #define RXSTATE 0 #define TXRX_PIN 22 ? // GPIO2 is mapped to TX pin: // HIGH means TX mode // LOW means RX mode pinMode(TXRX_PIN, OUTPUT); TXRX_state = RXSTATE; digitalWrite(TXRX_PIN, TXRX_state); ?// RX mode ? if (selection == "TXB"){ ? ? Serial.println("Toggling TX BPF selection"); ? ? ? GPA_state = GPA_state ^ 0b00000001; ? } if (selection == "RXB"){ ? ? Serial.println("Toggling RX BPF selection"); ? ? ? GPA_state = GPA_state ^ 0b00000010; ? } ? if (selection == "TX"){ ? ? Serial.println("Selecting TX state"); ? ? TXRX_state = TXSTATE; ? ? digitalWrite(TXRX_PIN, TXRX_state); ?// TX mode ? } ? if (selection == "RX"){ ? ? Serial.println("Selecting RX state"); ? ? TXRX_state = RXSTATE; ? ? digitalWrite(TXRX_PIN, TXRX_state); ?// RX mode ? ? ? Dr. William J. Schmidt - K9HZ J68HZ 8P6HK ZF2HZ PJ4/K9HZ VP5/K9HZ PJ2/K9HZ VP2EHZ ? Owner - Operator Big Signal Ranch ¨C K9ZC Staunton, Illinois ? Owner ¨C Operator Villa Grand Piton ¨C J68HZ Soufriere, St. Lucia W.I. Rent it: ? Moderator: North American QRO Group at Groups.IO. Moderator: Amateur Radio Builders Group at Groups.IO. ? email:? bill@... ? ? From: [email protected] <[email protected]> On Behalf Of epif18 via groups.io
Sent: Friday, March 21, 2025 8:43 PM To: [email protected] Subject: Re: [SoftwareControlledHamRadio] LPF-Control PCB TX Logic at U3 & U7 ? Hey yall', I ran the LPF test .ino along with the K9HZ LPF Prototype Test Report using MAIN and all modes and functions pass.? So all LPF control board HW works with in-band loss for LPF about -0.5db and -2.5db for BPF.? I've run the RX using LPF directly (not thru the control board) and thru the BPF.? Works great, all filters switch fine !!!!!? Now need to troubleshoot the control board using 66.4. I'm using V12, single RX.? Looks like there are issues out there.? Any specifics?? Modes? TX to RX?? Right now I'm guessing there are issues with 66.4. Mark KU3O |