I keep getting an error where the program jumps to this function when I debug the program...
/*******************************************************************************************************************//**
* @brief Default initialization function, used only if bsp_init is not defined in the user application.
**********************************************************************************************************************/
void bsp_init_internal(void * p_args)
{
/* Do nothing. */
SSP_PARAMETER_NOT_USED(p_args);
}
I am not sure why this error is happening as the bsp_init function is defined by synergy in bsp_init.c as...
void bsp_init (void * p_args)
{
SSP_PARAMETER_NOT_USED(p_args);
/** Initialize SDRAM. */
bsp_sdram_init();
/** Initialize QSPI flash memory. */
bsp_qspi_init();
}
How can I fix this from happening? I am using SSP 1.2.0 b.1