You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2022/03/17 12:13:10 UTC

[mynewt-nimble] branch master updated (f1a5658 -> a8d2fa4)

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

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


    from f1a5658  targets: Update to new transport
     new 847c047  nimble/transport: Fix typo
     new a8d2fa4  apps/btshell: Fix build

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 apps/btshell/src/main.c          | 1 -
 nimble/transport/src/transport.c | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

[mynewt-nimble] 01/02: nimble/transport: Fix typo

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 847c04726899801b5fae11efb34e2e94089401c2
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Thu Mar 17 12:05:05 2022 +0100

    nimble/transport: Fix typo
---
 nimble/transport/src/transport.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nimble/transport/src/transport.c b/nimble/transport/src/transport.c
index 1eea5ad..0a641a8 100644
--- a/nimble/transport/src/transport.c
+++ b/nimble/transport/src/transport.c
@@ -80,11 +80,11 @@ ble_transport_alloc_cmd(void)
 }
 
 void *
-ble_transport_alloc_evt(int discarcable)
+ble_transport_alloc_evt(int discardable)
 {
     void *buf;
 
-    if (discarcable) {
+    if (discardable) {
         buf = os_memblock_get(&pool_evt_lo);
     } else {
         buf = os_memblock_get(&pool_evt);

[mynewt-nimble] 02/02: apps/btshell: Fix build

Posted by an...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a8d2fa406338e73c34303a089346d14a388980a0
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Thu Mar 17 12:08:12 2022 +0100

    apps/btshell: Fix build
---
 apps/btshell/src/main.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/apps/btshell/src/main.c b/apps/btshell/src/main.c
index 7741050..e6f2f56 100644
--- a/apps/btshell/src/main.c
+++ b/apps/btshell/src/main.c
@@ -33,7 +33,6 @@
 /* BLE */
 #include "nimble/ble.h"
 #include "nimble/nimble_opt.h"
-#include "nimble/ble_hci_trans.h"
 #include "host/ble_hs.h"
 #include "host/ble_hs_adv.h"
 #include "host/ble_uuid.h"