nrf51: fix assertHandler function signature

Not using the right signature led to a compiler crash.
The compiler should probably be fixed in this case (to report an error
instead), but this at least fixes the issue.
This commit is contained in:
Ayke van Laethem 2021-04-14 17:15:48 +02:00 committed by Ron Evans
parent 28f9f4e69e
commit 10dcd116e8

@ -11,7 +11,7 @@ package bluetooth
#include "ble.h"
#include "ble_gap.h"
void assertHandler(void);
void assertHandler(uint32_t pc, uint16_t line_number, const uint8_t * p_file_name);
*/
import "C"