From 510dc550ed488c5f690c8375a2db559ca4dde4b1 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Thu, 28 Apr 2022 12:03:52 +0200 Subject: [PATCH] porting: fix transport init in nimble_port.c --- porting/nimble/src/nimble_port.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/porting/nimble/src/nimble_port.c b/porting/nimble/src/nimble_port.c index 2a81fd63f..1bd57f2b0 100644 --- a/porting/nimble/src/nimble_port.c +++ b/porting/nimble/src/nimble_port.c @@ -24,7 +24,7 @@ #include "nimble/nimble_port.h" #if NIMBLE_CFG_CONTROLLER #include "controller/ble_ll.h" -#include "transport/ram/ble_hci_ram.h" +#include "nimble/transport.h" #endif static struct ble_npl_eventq g_eventq_dflt; @@ -46,7 +46,6 @@ nimble_port_init(void) ble_transport_hs_init(); #if NIMBLE_CFG_CONTROLLER - ble_hci_ram_init(); #ifndef RIOT_VERSION hal_timer_init(5, NULL); os_cputime_init(32768);