The following code is present at various places in RN487x_BLE.cpp
char c1[4] ;
sprintf(c1, "%04X", scanInterval) ;
The sprintf is going write 5 bytes and the stack will be corrupted. Futhermore, the code should be refactored similar to what is done in commit e0fbfac.
The following code is present at various places in RN487x_BLE.cpp
The sprintf is going write 5 bytes and the stack will be corrupted. Futhermore, the code should be refactored similar to what is done in commit e0fbfac.