This fix build regression introduced by "bsp; add bsp_core_dump() to
report which areas to dump." (fd1c853319337af32e70ad).
Building target targets/blehci
Compiling main.c
Error: In file included from main.c:23:0:
repos/apache-mynewt-core/hw/bsp/nrf51-arduino_101//include/bsp/
bsp.h:34:8: error: unknown type name 'uint8_t'
extern uint8_t _ram_start;
^
---
apps/blehci/src/main.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/apps/blehci/src/main.c b/apps/blehci/src/main.c
index ca2e39d..01833f5 100755
--- a/apps/blehci/src/main.c
+++ b/apps/blehci/src/main.c
@@ -16,6 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
+#include <stdint.h>
#include <assert.h>
#include <string.h>
#include <stdio.h>
--
2.5.5