Use elif and parentheses in conditionals
This commit is contained in:
parent
8c136a5ab5
commit
6864280803
@ -268,12 +268,11 @@
|
|||||||
#if (POWER_SUPPLY == 1) // 1 = ATX
|
#if (POWER_SUPPLY == 1) // 1 = ATX
|
||||||
#define PS_ON_AWAKE LOW
|
#define PS_ON_AWAKE LOW
|
||||||
#define PS_ON_ASLEEP HIGH
|
#define PS_ON_ASLEEP HIGH
|
||||||
#endif
|
#elif (POWER_SUPPLY == 2) // 2 = X-Box 360 203W
|
||||||
#if (POWER_SUPPLY == 2) // 2 = X-Box 360 203W
|
|
||||||
#define PS_ON_AWAKE HIGH
|
#define PS_ON_AWAKE HIGH
|
||||||
#define PS_ON_ASLEEP LOW
|
#define PS_ON_ASLEEP LOW
|
||||||
#endif
|
#endif
|
||||||
HAS_POWER_SWITCH = POWER_SUPPLY > 0 && defined(PS_ON_PIN) && PS_ON_PIN >= 0
|
HAS_POWER_SWITCH = (POWER_SUPPLY > 0 && defined(PS_ON_PIN) && PS_ON_PIN >= 0)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Temp Sensor defines
|
* Temp Sensor defines
|
||||||
|
Loading…
Reference in New Issue
Block a user