From 1acd7ccf7ca39b00d4134a40ab2598cfb43903b1 Mon Sep 17 00:00:00 2001 From: schneider Date: Sat, 5 Aug 2017 06:05:31 +0200 Subject: [PATCH] fix(rad1o): TX_RX_N is on GPIO1_11 --- firmware/common/hackrf_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/common/hackrf_core.c b/firmware/common/hackrf_core.c index 3e9dc57e..1c05e221 100644 --- a/firmware/common/hackrf_core.c +++ b/firmware/common/hackrf_core.c @@ -99,7 +99,7 @@ static struct gpio_t gpio_rx_amp = GPIO(1, 11); static struct gpio_t gpio_no_rx_amp_pwr = GPIO(1, 12); #endif #ifdef RAD1O -static struct gpio_t gpio_tx_rx_n = GPIO(0, 11); +static struct gpio_t gpio_tx_rx_n = GPIO(1, 11); static struct gpio_t gpio_tx_rx = GPIO(0, 14); static struct gpio_t gpio_by_mix = GPIO(1, 12); static struct gpio_t gpio_by_mix_n = GPIO(2, 10);