You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/10/20 22:57:00 UTC

incubator-mynewt-core git commit: nimble uart transport; fix broken build.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 51bcb4628 -> 598cd4b4c


nimble uart transport; fix broken build.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/598cd4b4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/598cd4b4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/598cd4b4

Branch: refs/heads/develop
Commit: 598cd4b4c7fe6d4e28bc8c938442ef52ba93145e
Parents: 51bcb46
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Thu Oct 20 15:56:09 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Thu Oct 20 15:56:42 2016 -0700

----------------------------------------------------------------------
 net/nimble/transport/uart/pkg.yml            | 1 +
 net/nimble/transport/uart/src/ble_hci_uart.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/598cd4b4/net/nimble/transport/uart/pkg.yml
----------------------------------------------------------------------
diff --git a/net/nimble/transport/uart/pkg.yml b/net/nimble/transport/uart/pkg.yml
index 9fff07a..b3a7f68 100644
--- a/net/nimble/transport/uart/pkg.yml
+++ b/net/nimble/transport/uart/pkg.yml
@@ -29,6 +29,7 @@ pkg.deps:
     - hw/hal
     - kernel/os
     - net/nimble
+    - util/mem
 
 pkg.apis:
     - ble_transport

http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/598cd4b4/net/nimble/transport/uart/src/ble_hci_uart.c
----------------------------------------------------------------------
diff --git a/net/nimble/transport/uart/src/ble_hci_uart.c b/net/nimble/transport/uart/src/ble_hci_uart.c
index 9ea54be..260784c 100755
--- a/net/nimble/transport/uart/src/ble_hci_uart.c
+++ b/net/nimble/transport/uart/src/ble_hci_uart.c
@@ -26,7 +26,7 @@
 #include "syscfg/syscfg.h"
 #include "bsp/bsp.h"
 #include "os/os.h"
-#include "util/mem.h"
+#include "mem/mem.h"
 #include "hal/hal_gpio.h"
 #include "hal/hal_uart.h"