Hello, again update testing today, I commented all functions before Platform_Init, problems come out when I comment second function with PlatformInit(),
void PlatformInit(void)
{
/* Configure S32G clocks */
/* Enable LLCE partition */
Mcu_Init(MCU_VARIANT);
Mcu_InitClock(McuClockSettingConfig_0); // problem coming
// while ( MCU_PLL_LOCKED != Mcu_GetPllStatus() )
// {
// /* Busy wait until the System PLL is locked */
// }
// Mcu_DistributePllClock();
// Mcu_SetMode(McuModeSettingConf_0);
// #ifdef USE_PORT_HLD
// Port_Init(PORT_VARIANT);
// #else
// Siul2_Port_Ip_Init(NUM_OF_CONFIGURED_PINS0, g_pin_mux_InitConfigArr0);
// #endif
// OsIf_Init(NULL); /* enable system timer for timeout detection */
/* Configurations for IRQ routing, priority and enable through Platform plugin. */
Platform_Init(NULL);
// Can_Enable_Timestamp();
}
THanks