From 202f2ecf54ea9c5df77b25a79d0dc2ff934fbe3c Mon Sep 17 00:00:00 2001 From: schneider Date: Sat, 28 Jan 2017 22:31:00 +0100 Subject: [PATCH] fix(mixer): Use correct pins for MAX2871 --- firmware/common/mixer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/common/mixer.c b/firmware/common/mixer.c index ac48386f..93467327 100644 --- a/firmware/common/mixer.c +++ b/firmware/common/mixer.c @@ -16,8 +16,8 @@ static struct gpio_t gpio_vco_ce = GPIO(2, 13); static struct gpio_t gpio_vco_sclk = GPIO(5, 6); static struct gpio_t gpio_vco_sdata = GPIO(3, 3); static struct gpio_t gpio_vco_le = GPIO(2, 14); -static struct gpio_t gpio_synt_rfout_en = GPIO(5, 25); -static struct gpio_t gpio_vco_mux = GPIO(3, 5); +static struct gpio_t gpio_vco_mux = GPIO(5, 25); +static struct gpio_t gpio_synt_rfout_en = GPIO(3, 5); #endif #if (defined JAWBREAKER || defined HACKRF_ONE)