#define abs(x) ((x)>0?(x):-(x))
Computes the absolute value of a number.
x: if x is greater than or equal to 0.
-x: if x is less than 0.
wiring_constants.h
Macros