SDK 1.1.0 introduced backward incompatible change of requiring user to define user_rf_pre_init(). Of course, this could have been easily avoided by providing default empty implementation in the library, what this patch does.
5 lines
146 B
C
5 lines
146 B
C
// Provide default empty implementation of user_rf_pre_init
|
|
// to maintain compatibility with older SDK versions.
|
|
void user_rf_pre_init(void)
|
|
{
|
|
}
|