Hello Josh, Once you enable error logging using "ssp_error_log", this function will be invoked for most errors inside the SSP code. The prototype is void ssp_error_log(ssp_err_t err, const char * module, int32_t line); and weak definition is provided in case you enable the feature but don't implement the function. Parameters passed into the function are: error code, name of the module and the line at which error occurred). You can implement UART write inside that function to provide error logging on serial interface. Regards
↧