File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ typedef enum {
24
24
typedef enum {
25
25
LSBFIRST = 0 ,
26
26
MSBFIRST = 1 ,
27
- } BitMode ;
27
+ } BitOrder ;
28
28
29
29
#define PI 3.1415926535897932384626433832795
30
30
#define HALF_PI 1.5707963267948966192313216916398
@@ -114,8 +114,8 @@ void delayMicroseconds(unsigned int us);
114
114
unsigned long pulseIn (pin_size_t pin , uint8_t state , unsigned long timeout );
115
115
unsigned long pulseInLong (pin_size_t pin , uint8_t state , unsigned long timeout );
116
116
117
- void shiftOut (pin_size_t dataPin , pin_size_t clockPin , BitMode bitOrder , uint8_t val );
118
- pin_size_t shiftIn (pin_size_t dataPin , pin_size_t clockPin , BitMode bitOrder );
117
+ void shiftOut (pin_size_t dataPin , pin_size_t clockPin , BitOrder bitOrder , uint8_t val );
118
+ pin_size_t shiftIn (pin_size_t dataPin , pin_size_t clockPin , BitOrder bitOrder );
119
119
120
120
void attachInterrupt (pin_size_t interruptNumber , voidFuncPtr callback , PinStatus mode );
121
121
void detachInterrupt (pin_size_t interruptNumber );
You can’t perform that action at this time.
0 commit comments