Hi Dennis
I tested this case scenario in my side and I couldn't replicate your problem. Could you tell me how you test this?
I used the demo code included with SDK drivers, located in the path: {SDK_2.0_TWR-K24F120M}\boards\twrk24f120m\demo_apps\power_manager
This code already set up different power modes. Then I just add the following code to see RTC_CLKOUT:
PORT_SetPinMux(PORTE, 26u, kPORT_MuxAlt6);
rtc_config_t rtcConfig;
RTC_GetDefaultConfig(&rtcConfig);
RTC_Init(RTC, &rtcConfig);
RTC->CR |= RTC_CR_OSCE_MASK;
RTC_StopTimer(RTC);
CLOCK_SetRtcClkOutClock(0);
RTC_StartTimer(RTC);
I run the code and I saw the signal in my scope, and if I set the MCU to go to LLS or VLLS mode, this signal disappear. Could you try this set up and tell me how it goes?
Hope this information helps you
Best Regards
Jorge Alcala