From e2fe4b65d9c74c5daa5de807f781b31c331a5af9 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Tue, 23 Aug 2016 10:30:05 -0700 Subject: [PATCH] CPLD: Set DECIM1 as input to CPLD. How did DECIM work before?! Now, decimate is no longer a feature, so this doesn't really matter. But tidying it up anyway. --- firmware/common/baseband_sgpio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/common/baseband_sgpio.cpp b/firmware/common/baseband_sgpio.cpp index a574e81d1..1cc0d143c 100644 --- a/firmware/common/baseband_sgpio.cpp +++ b/firmware/common/baseband_sgpio.cpp @@ -190,7 +190,7 @@ constexpr uint32_t gpio_outreg(const Direction direction) { constexpr uint32_t gpio_oenreg(const Direction direction) { return (0U << PIN_DECIM2) - | (1U << PIN_DECIM1) + | (0U << PIN_DECIM1) | (0U << PIN_DECIM0) | (0U << PIN_INVERT) | (1U << PIN_DIRECTION)