Explorar o código

prevent compilation of unused files with endif

not really working well
titi %!s(int64=5) %!d(string=hai) anos
pai
achega
e0a5e57074
Modificáronse 4 ficheiros con 16 adicións e 0 borrados
  1. 3 0
      Atm_AccelStepper.cpp
  2. 5 0
      Atm_encoderInt.cpp
  3. 4 0
      Atm_led_TLC.cpp
  4. 4 0
      Atm_led_WS2812.cpp

+ 3 - 0
Atm_AccelStepper.cpp

@@ -1,3 +1,4 @@
+// #ifdef AccelStepper_h
 #include "Atm_AccelStepper.h"
 
 /* Add optional parameters for the state machine to begin()
@@ -740,3 +741,5 @@ Atm_AccelStepper& Atm_AccelStepper::trace( Stream & stream ) {
     "ACCELSTEPPER\0EVT_DISABLE\0EVT_ENABLE\0EVT_ENABLED_TIMEOUT\0EVT_MOVE\0EVT_STOP\0EVT_EMERGENCY_STOP\0EVT_ON_LIMIT_LOW\0EVT_ON_LIMIT_HIGH\0EVT_ON_TARGET\0EVT_HOMING_LOW\0EVT_HOMING_HIGH\0ELSE\0DISABLED\0ENABLED\0RUNNING\0STOP\0HOMING_LOW\0HOMING_HIGH\0LIMIT_LOW\0LIMIT_HIGH" );
   return *this;
 }
+
+// #endif

+ 5 - 0
Atm_encoderInt.cpp

@@ -1,3 +1,6 @@
+
+#ifdef Encoder_h_
+
 #include "Atm_encoderInt.h"
 #include <limits.h>
 
@@ -156,3 +159,5 @@ Atm_encoderInt& Atm_encoderInt::trace( Stream& stream ) {
   Machine::setTrace( &stream, atm_serial_debug::trace, "ENCODER\0EVT_UP\0EVT_DOWN\0ELSE\0IDLE\0UP\0DOWN" );
   return *this;
 }
+
+#endif

+ 4 - 0
Atm_led_TLC.cpp

@@ -5,6 +5,8 @@
  *      Author: ian
  */
 
+#ifdef _ADAFRUIT_TLC59711_H
+
 #include <Atm_led_TLC.h>
 #include <Atm_led.hpp>
 
@@ -42,3 +44,5 @@ Atm_led_TLC& Atm_led_TLC::setMinMax(int min, int max) {
 	this->pwm_max = max ;
 	return *this;
 }
+
+#endif

+ 4 - 0
Atm_led_WS2812.cpp

@@ -5,6 +5,8 @@
  *      Author: ian
  */
 
+#ifdef FASTLED_INTERNAL
+
 #include <Atm_led_WS2812.h>
 #include <Atm_led.hpp>
 
@@ -52,3 +54,5 @@ Atm_led_WS2812& Atm_led_WS2812::setHueSat(int hue, int sat) {
 	this->color.sat = sat ;
 	return *this;
 }
+
+#endif