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:
Glenn Ruben Bakke 2020-06-25 22:55:40 +02:00 committed by Damien George
parent 4050281311
commit 9dfb4ae6aa
1 changed files with 1 additions and 0 deletions

View File

@ -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