hi Peter
I have the same problem,basing on the example of freeRTOS(SDK 3.0) for MPC5748G,I add some functions
for CAN bus.
1,the compiling is success;
2,elf file is generated;
3,in debug mode, after initializing clock,flexcan,then I want to install one callback function for FlexCAN,
after entering into FLEXCAN_DRV_InstallEventCallback,at the end of this function,some error happened.
void FLEXCAN_DRV_InstallEventCallback(uint8_t instance,
flexcan_callback_t callback,
void *callbackParam)
{
DEV_ASSERT(instance < CAN_INSTANCE_COUNT);
flexcan_state_t * state = g_flexcanStatePtr[instance];
state->callback = callback;
state->callbackParam = callbackParam;
}
the error is "No source available for "uSDHC_DriverIRQHandler() at 0x1002bc8" ", do you have any sollution?
thank you.