Skip to content

Commit 2298fb2

Browse files
committed
Add compatibility with mbed core > 2.0.0
1 parent 03361e2 commit 2298fb2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/mbed/Servo.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
#include <Servo.h>
55
#include <mbed.h>
66

7+
#if defined __has_include
8+
# if __has_include ("pinDefinitions.h")
9+
# include "pinDefinitions.h"
10+
# endif
11+
#endif
12+
713
class ServoImpl {
814
mbed::DigitalOut *pin;
915
mbed::Timeout timeout; // calls a callback once when a timeout expires

0 commit comments

Comments
 (0)