Skip to content

Commit 98ea7f1

Browse files
committed
Add missing includes
1 parent 6c6635f commit 98ea7f1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/bpid/mac.h

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
#include <Ethernet.h>
2929
#define IFACE_MAC_ADDR_LENGTH 6
3030
#else
31+
#include <stdint.h>
32+
#include <stddef.h>
3133
#define IFACE_MAC_ADDR_LENGTH 0
3234
#endif
3335

src/bpid/ucid.h

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ namespace arduino { namespace ucid {
3434
}
3535
#define UC_UID_SIZE FLASH_UNIQUE_ID_SIZE_BYTES
3636
#else
37+
#include <stdint.h>
38+
#include <stddef.h>
3739
#define UC_UID_SIZE 0
3840
#endif
3941

0 commit comments

Comments
 (0)