You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ha...@apache.org on 2022/06/02 08:10:34 UTC

[mynewt-nimble] 03/07: transport: expose ble_transport_init() in header

This is an automated email from the ASF dual-hosted git repository.

hauke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 5177f6c6655905615da3f9949313075dd28adc17
Author: Hauke Petersen <ha...@fu-berlin.de>
AuthorDate: Thu Apr 28 12:02:25 2022 +0200

    transport: expose ble_transport_init() in header
---
 nimble/transport/include/nimble/transport.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/nimble/transport/include/nimble/transport.h b/nimble/transport/include/nimble/transport.h
index 9e0eb669..fc3d7375 100644
--- a/nimble/transport/include/nimble/transport.h
+++ b/nimble/transport/include/nimble/transport.h
@@ -29,6 +29,9 @@ extern "C" {
 
 struct os_mbuf;
 
+/* Initialization */
+void ble_transport_init(void);
+
 /* Allocators for supported data types */
 void *ble_transport_alloc_cmd(void);
 void *ble_transport_alloc_evt(int discardable);