feat(max2871): Implement mixer_enable and mixer_disable

This commit is contained in:
Tobias Schneider
2015-12-26 16:19:58 +01:00
parent 98af0a9340
commit bdb762f023

View File

@ -237,9 +237,13 @@ void mixer_rx(void)
void mixer_rxtx(void)
{}
void mixer_enable(void)
{}
{
gpio_set(PORT_VCO_CE, PIN_VCO_CE); /* active high */
}
void mixer_disable(void)
{}
{
gpio_clear(PORT_VCO_CE, PIN_VCO_CE); /* active high */
}
void mixer_set_gpo(uint8_t gpo)
{
(void) gpo;