We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent445594a commit8b5b3feCopy full SHA for 8b5b3fe
api/Common.h
@@ -24,7 +24,7 @@ typedef enum {
24
typedefenum {
25
LSBFIRST=0,
26
MSBFIRST=1,
27
-}BitMode;
+}BitOrder;
28
29
#definePI 3.1415926535897932384626433832795
30
#defineHALF_PI 1.5707963267948966192313216916398
@@ -114,8 +114,8 @@ void delayMicroseconds(unsigned int us);
114
unsigned longpulseIn(pin_size_tpin,uint8_tstate,unsigned longtimeout);
115
unsigned longpulseInLong(pin_size_tpin,uint8_tstate,unsigned longtimeout);
116
117
-voidshiftOut(pin_size_tdataPin,pin_size_tclockPin,BitModebitOrder,uint8_tval);
118
-pin_size_tshiftIn(pin_size_tdataPin,pin_size_tclockPin,BitModebitOrder);
+voidshiftOut(pin_size_tdataPin,pin_size_tclockPin,BitOrderbitOrder,uint8_tval);
+pin_size_tshiftIn(pin_size_tdataPin,pin_size_tclockPin,BitOrderbitOrder);
119
120
voidattachInterrupt(pin_size_tinterruptNumber,voidFuncPtrcallback,PinStatusmode);
121
voiddetachInterrupt(pin_size_tinterruptNumber);