updated rffc test/commments

This commit is contained in:
Michael Ossmann
2013-03-07 10:35:49 -07:00
parent f150732215
commit 155a688d11
2 changed files with 8 additions and 8 deletions

View File

@ -535,7 +535,7 @@ void rffc5071_set_gpo(uint8_t gpo)
int main(int ac, char **av) int main(int ac, char **av)
{ {
rffc5071_setup(); rffc5071_setup();
rffc5071_tx(); rffc5071_tx(0);
rffc5071_set_frequency(500, 0); rffc5071_set_frequency(500, 0);
rffc5071_set_frequency(525, 0); rffc5071_set_frequency(525, 0);
rffc5071_set_frequency(550, 0); rffc5071_set_frequency(550, 0);
@ -543,7 +543,7 @@ int main(int ac, char **av)
rffc5071_set_frequency(1525, 0); rffc5071_set_frequency(1525, 0);
rffc5071_set_frequency(1550, 0); rffc5071_set_frequency(1550, 0);
rffc5071_disable(); rffc5071_disable();
rffc5071_rx(); rffc5071_rx(0);
rffc5071_disable(); rffc5071_disable();
rffc5071_rxtx(); rffc5071_rxtx();
rffc5071_disable(); rffc5071_disable();

View File

@ -36,12 +36,12 @@ extern uint32_t rffc5071_regs_dirty;
* RF switches on Jawbreaker are controlled by General Purpose Outputs (GPO) on * RF switches on Jawbreaker are controlled by General Purpose Outputs (GPO) on
* the RFFC5072. * the RFFC5072.
*/ */
#define SWITCHCTRL_NO_TX_AMP_PWR (1 << 0) /* turn off TX amp power */ #define SWITCHCTRL_NO_TX_AMP_PWR (1 << 0) /* GPO1 turn off TX amp power */
#define SWITCHCTRL_AMP_BYPASS (1 << 1) /* bypass amp section */ #define SWITCHCTRL_AMP_BYPASS (1 << 1) /* GPO2 bypass amp section */
#define SWITCHCTRL_TX (1 << 2) /* 1 for TX mode, 0 for RX mode */ #define SWITCHCTRL_TX (1 << 2) /* GPO3 1 for TX mode, 0 for RX mode */
#define SWITCHCTRL_MIX_BYPASS (1 << 3) /* bypass RFFC5072 mixer section */ #define SWITCHCTRL_MIX_BYPASS (1 << 3) /* GPO4 bypass RFFC5072 mixer section */
#define SWITCHCTRL_HP (1 << 4) /* 1 for high-pass, 0 for low-pass */ #define SWITCHCTRL_HP (1 << 4) /* GPO5 1 for high-pass, 0 for low-pass */
#define SWITCHCTRL_NO_RX_AMP_PWR (1 << 5) /* turn off RX amp power */ #define SWITCHCTRL_NO_RX_AMP_PWR (1 << 5) /* GPO6 turn off RX amp power */
/* /*
* Safe (initial) switch settings turn off both amplifiers and enable both amp * Safe (initial) switch settings turn off both amplifiers and enable both amp