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.
This commit is contained in:
Jared Boone 2016-08-23 10:30:05 -07:00
parent 11a5aa9766
commit e2fe4b65d9

View File

@ -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)