File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 29
29
*/
30
30
31
31
#define NUMBER_PINS_TOTAL NUM_DIGITAL_PINS
32
- #define pwm_details (pin ) pin = pin // do nothing // print PWM details
33
- #define pwm_status (pin ) false //Print a pin's PWM status. Return true if it's currently a PWM pin.
32
+ #define pwm_details (pin ) NOOP // do nothing
33
+ #define pwm_status (pin ) false // Print a pin's PWM status. Return true if it's currently a PWM pin.
34
34
#define IS_ANALOG (P ) (DIGITAL_PIN_TO_ANALOG_PIN(P) >= 0 ? 1 : 0)
35
35
#define digitalRead_mod (p ) extDigitalRead(p)
36
36
#define PRINT_PORT (p )
Original file line number Diff line number Diff line change 27
27
*/
28
28
29
29
#define NUMBER_PINS_TOTAL NUM_DIGITAL_PINS
30
- #define pwm_details (pin ) pin = pin // do nothing // print PWM details
31
- #define pwm_status (pin ) false //Print a pin's PWM status. Return true if it's currently a PWM pin.
30
+ #define pwm_details (pin ) NOOP // do nothing
31
+ #define pwm_status (pin ) false // Print a pin's PWM status. Return true if it's currently a PWM pin.
32
32
#define IS_ANALOG (P ) (DIGITAL_PIN_TO_ANALOG_PIN(P) >= 0 ? 1 : 0)
33
33
#define digitalRead_mod (p ) digitalRead(p)
34
34
#define PRINT_PORT (p )
You can’t perform that action at this time.
0 commit comments