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/06/13 19:46:46 UTC

incubator-mynewt-core git commit: arduino 101; include definition for uint8_t to fix compilation failures.

Repository: incubator-mynewt-core
Updated Branches:
  refs/heads/develop 6ed23d287 -> de23a8bfa


arduino 101; include definition for uint8_t to fix compilation
failures.


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/de23a8bf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/de23a8bf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/de23a8bf

Branch: refs/heads/develop
Commit: de23a8bfa908f5b70398164d36dc3ac32138c9ca
Parents: 6ed23d2
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Mon Jun 13 12:42:57 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Mon Jun 13 12:42:57 2016 -0700

----------------------------------------------------------------------
 hw/bsp/nrf51-arduino_101/include/bsp/bsp.h | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/de23a8bf/hw/bsp/nrf51-arduino_101/include/bsp/bsp.h
----------------------------------------------------------------------
diff --git a/hw/bsp/nrf51-arduino_101/include/bsp/bsp.h b/hw/bsp/nrf51-arduino_101/include/bsp/bsp.h
index b931282..f4101b4 100644
--- a/hw/bsp/nrf51-arduino_101/include/bsp/bsp.h
+++ b/hw/bsp/nrf51-arduino_101/include/bsp/bsp.h
@@ -20,6 +20,8 @@
 #ifndef H_BSP_H
 #define H_BSP_H
 
+#include <inttypes.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif