Added max2837_rx() function.

This commit is contained in:
Jared Boone
2012-06-14 13:06:48 -07:00
parent f08fc3bb51
commit 570efc1361
2 changed files with 9 additions and 0 deletions

View File

@ -192,6 +192,14 @@ void max2837_tx(void)
#endif
}
void max2837_rx(void)
{
LOG("# max2837_rx\n");
#if !defined TEST
gpio_set(PORT_XCVR_ENABLE, PIN_XCVR_RXENABLE);
#endif
}
void max2837_stop(void)
{
LOG("# max2837_stop\n");

View File

@ -42,5 +42,6 @@ extern void max2837_stop(void);
extern void max2837_set_frequency(uint32_t freq);
extern void max2837_tx(void);
extern void max2837_rx(void);
#endif // __MAX2837_H