OUTPUTm_MUX write helper. Selects which LUT drives PLU_OUTm.
| 147 | |
| 148 | // OUTPUTm_MUX write helper. Selects which LUT drives PLU_OUTm. |
| 149 | static inline void writeOutputMux(fl::u8 out_idx, fl::u8 lut_sel) FL_NOEXCEPT { |
| 150 | *reg32(kPluBase, kOffOutputMux0 + (fl::u32(out_idx) << 2)) = lut_sel; |
| 151 | } |
| 152 | |
| 153 | // Enable PLU peripheral clock (SYSCON->SYSAHBCLKCTRL0 bit 18). |
| 154 | static inline void enablePluClock() FL_NOEXCEPT { |
no test coverage detected