Hello,
we are sorry for the inconvenience. The InterruptVector compoennt for Kinetis and CFV1+ families would be published in CW V10.3
Could you please specify why the CPU_OnHardFault() event from CPU component is not sufficient for you? I think it should provide the same functionality as if the hardfault would be handled by InterruptVector component...
Could you also please provide more details about your use case? Would be for example for you sufficient to provide hot-fix for you that will allow you to disable generation of RTC init. code in CPU.c and after that move the original RTC code from CPU.c to the user code?
The RTC init code, that would be moved into user code after applying the patch and disabling its generaiton in CPU.c:
/* SIM_SCGC6: RTC=1 */
SIM_SCGC6 |= (uint32_t)0x20000000UL;
if ((RTC_CR & RTC_CR_OSCE_MASK) == 0u) { /* Only if the OSCILLATOR is not already enabled */
/* RTC_CR: SC2P=0,SC4P=0,SC8P=0,SC16P=0 */
RTC_CR &= (uint32_t)~0x3C00UL;
/* RTC_CR: OSCE=1 */
RTC_CR |= (uint32_t)0x0100UL;
/* RTC_CR: CLKO=0 */
RTC_CR &= (uint32_t)~0x0200UL;
}
best regards
Vojtech Filip
Processor Expert Support Team