Skip to content

Reduce number of macro layers. auxiliaries.h #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: fix_race_condition_direct_port_manipulation
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions speeduino/auxiliaries.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ static inline void checkAirConRPMLockout(void);
#define VVT2_PIN_OFF() VVT2_PIN_LOW();
#define VVT_TIME_DELAY_MULTIPLIER 50

#define FAN_ON() ((configPage6.fanInv) ? FAN_PIN_LOW() : FAN_PIN_HIGH())
#define FAN_OFF() ((configPage6.fanInv) ? FAN_PIN_HIGH() : FAN_PIN_LOW())
#define FAN_ON() ((configPage6.fanInv) ? digitalWrite(pinFan, LOW) : digitalWrite(pinFan, HIGH))
#define FAN_OFF() ((configPage6.fanInv) ? digitalWrite(pinFan, HIGH) : digitalWrite(pinFan, LOW))

#define WMI_TANK_IS_EMPTY() ((configPage10.wmiEmptyEnabled) ? ((configPage10.wmiEmptyPolarity) ? digitalRead(pinWMIEmpty) : !digitalRead(pinWMIEmpty)) : 1)

Expand Down