8000 can api: fix for toolchain with limited c++ support · arduino/ArduinoCore-API@ddca5c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit ddca5c6

Browse files
committed
can api: fix for toolchain with limited c++ support
1 parent 2543716 commit ddca5c6

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

api/CanMsg.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
* INCLUDE
1313
**************************************************************************************/
1414

15-
#include <cstdlib>
16-
#include <cstdint>
17-
#include <cstring>
15+
#include <stdint.h>
16+
#include <string.h>
1817

1918
#include <Arduino.h>
2019

api/CanMsgRingbuffer.h

Lines changed: 1 addition & 1 deletion

Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* INCLUDE
1313
**************************************************************************************/
1414
15-
#include <cstdint>
15+
#include <stdint.h>
1616

1717
#include "CanMsg.h"
1818

0 commit comments

Comments
 (0)
0