Hi @Chris_Tigger
To enable the Time Overflow Interrupt, please follow these steps using the Peripheral Tool in ConfigTools:
Configure the Interrupt in the Platform Driver (Interrupt Controller → PlatformIsrConfig):
- Add and enable the overflow interrupt. For example, for FTM4, use: FTM4_Ovf_Reload_IRQn
- Assign the Corresponding Interrupt Handler. Continuing with the FTM4 example, assign: FTM_4_OVF_RELOAD_ISR
Set the Notification Function in the PWM Driver (PWMChannelConfigSet → PwmChannel):
- Assign the desired notification function.
In Code:
- Initialize the Platform Driver: Platform_Init().
- Enable PWM Signal Edge Notification: Pwm_EnableNotification(). Ensure the conditions shown in the image below are satisfied

- Implement the Notification Function. This function will be called periodically by the configured PWM channel.
Regarding your second question. Yes, the interrupt names are predefined and cannot be customized. You can find all the relevant definitions in the S32K148_COMMON.h file. Additionally, for the interrupt handlers, most of them are already defined. For example, in the case of FTM in PWM mode, the handlers are located in the Ftm_Pwm_Ip_Irq.h file.
BR, VaneB