nrf/bluetooth/ble_uart: Fix implicit declaration of function.
mp_keyboard_interrupt() triggers a compiler error because the function is implicitly declared. This commit adds "py/runtime.h" to the includes. Fixes issue #5732.
This commit is contained in:
parent
4050281311
commit
9dfb4ae6aa
|
@ -31,6 +31,7 @@
|
|||
#include "ringbuffer.h"
|
||||
#include "mphalport.h"
|
||||
#include "lib/utils/interrupt_char.h"
|
||||
#include "py/runtime.h"
|
||||
|
||||
#if MICROPY_PY_BLE_NUS
|
||||
|
||||
|
|
Loading…
Reference in New Issue