Hi @John_Adams,
You can chance the FC7 divider by using the line you previously mentioned:
CLOCK_SetClkDiv(kCLOCK_DivFlexcom7Clk, 1u);
However, this is already at the lowest division possible. increasing the divider will only decrease the frequency. If you wish to increase the FC7 frequency, you can try changing the source clock to another source, like the PLL divided clock (pll_clk_div) using:
CLOCK_AttachClk(kPLL_DIV_to_FLEXCOMM7);
Just make sure you are enabling this PLL divided clock by using:
CLOCK_AttachClk(kPLL0_to_PLLCLKDIV);
CLOCK_SetClkDiv(kCLOCK_DivPllClk, 1U);
BR,
Edwin.