Just a follow up on this question.
I am trying to use the xTAL32 32 KHz signal as an experiment to run the MCU. Now I noticed on the documentation that the clock specified to run the ARM coretex-M4 core is named "Core clock".
After that, there is no mention of a "Core Clock".
Question 1) Is the "core clock" the same as the MCGOUTCLK? The Diagram you sent me seems to indicate this is true.
Question 2) The documentation only differentiates between output of FLL/PLLCS, Internal ref clk (I assume 4MHz/32KHz), and External. However, the picture you sent shows 2 external clocks, a "System Oscillator", an "RTC Oscillator", and an IRC48M internal(?) oscillator.
I am assuming that all I need is to add the following line of code?
CLOCK_HAL_SetClkSrcMode(MCG_BASE,kMcgClkSelExternal);
CLOCK_HAL_SetExternalRefSel0Mode(MCG_BASE,kMcgExternalRefClkSelOsc);
and this is enough to get the device to work on the EXTAL32 clock signal?
Question 3) Can I connect a signal generator to the EXTAL32 and leave XTAL32 floating instead of using a crystal?