From f9322214a9e58b19b30bd52c95e01b450a58097f Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 7 Mar 2018 21:27:02 -0800 Subject: [PATCH] #include Arduino.h dependency Previously the library relied on the Arduino IDE doing the automatic insertion of #include in the sketch before #include . In some IDE versions that does not happen and there is no guarantee of that behavior in future IDE versions thus for backwards and forwards compatibility it's best to simply add an #include directive to DDS.h. --- src/DDS.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DDS.h b/src/DDS.h index ef6d193..8d408eb 100644 --- a/src/DDS.h +++ b/src/DDS.h @@ -1,6 +1,7 @@ #ifndef _DDS_H_ #define _DDS_H_ +#include #include // Use pin 3 for PWM? If not defined, use pin 11