Hi Stephen Monn
About your questions:
- Please check the schematic design of TWR-KV10Z3 and compare with yours, there is a manual reset part, they use a 10K as pullup and a 0.1uF capacitor from reset_b pin to ground:

2. The configuration of the clock depend of various factors, as you can see in the below image the core clock can be configured in different modes:

For example, with ksdk, if you want to configure the clock with 75 MHz you can do something like:
clock_manager_user_config_t g_defaultClockConfigRun=
{
.mcgConfig =
{
.mcg_mode = kMcgModeFEE, // Work in FEE mode.
.irclkEnable = true, // MCGIRCLK enable.
.irclkEnableInStop = false, // MCGIRCLK disable in STOP mode.
.ircs = kMcgIrcSlow, // Select IRC32k.
.fcrdiv = 0U,
.frdiv = 3U,
.drs = kMcgDcoRangeSelMidHigh, // Mid high frequency range
.dmx32 = kMcgDmx32Default, // DCO has a default range of 25%
}
};
clock_manager_user_config_t * config= &g_defaultClockConfigRun;
CLOCK_SYS_BootToFee(&config->mcgConfig);
I recommend you to check the ksdk_1.3 example code in {PATH_KSDK_1.3.0}\examples\twrkv10z32, and the reference manual of the KV10 family. You can also check:
Change between clock configurations
FRDMKL02Z Clock configuration
how to change K64F system clock without PE?
KSDK Clock configurations and Low Power modes with Processor Expert
3. Yes, there are some internal capacitors that can be enable when you want to use an external crystal, but again all depend on how you configure your MCU.
Hope this could help
Have a great day,
Jorge Alcala
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------