Skip to content

Commit

Permalink
fix(rad1o): Disable the VCO if the mixer is not in use
Browse files Browse the repository at this point in the history
  • Loading branch information
schneider42 committed Aug 5, 2017
1 parent 90d3f7f commit 03e472e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firmware/common/mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void mixer_enable(mixer_driver_t* const mixer)
rffc5071_enable(mixer);
#endif
#ifdef RAD1O
(void) mixer;
max2871_enable(mixer);
#endif
}

Expand All @@ -128,7 +128,7 @@ void mixer_disable(mixer_driver_t* const mixer)
rffc5071_disable(mixer);
#endif
#ifdef RAD1O
(void) mixer;
max2871_disable(mixer);
#endif
}

Expand Down

0 comments on commit 03e472e

Please sign in to comment.