This is an automated email from the ASF dual-hosted git repository.
jerzy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
The following commit(s) were added to refs/heads/master by this push:
new 85b44e1d2 bsp/pinetime: Add missing include file
85b44e1d2 is described below
commit 85b44e1d2c2f4a704d9bab0dcfae4ade3a426fb8
Author: Jerzy Kasenberg <[email protected]>
AuthorDate: Thu Sep 14 10:38:56 2023 +0200
bsp/pinetime: Add missing include file
uint8_t was used without stdint.h being included.
Signed-off-by: Jerzy Kasenberg <[email protected]>
---
hw/bsp/pinetime/include/bsp/bsp.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/hw/bsp/pinetime/include/bsp/bsp.h
b/hw/bsp/pinetime/include/bsp/bsp.h
index b7015b254..93d4d82c0 100644
--- a/hw/bsp/pinetime/include/bsp/bsp.h
+++ b/hw/bsp/pinetime/include/bsp/bsp.h
@@ -20,6 +20,8 @@
#ifndef H_BSP_
#define H_BSP_
+#include <stdint.h>
+
#ifdef __cplusplus
extern "C" {
#endif