forked from espressif/arduino-esp32
Cleanup arduino useless bullshit
This commit is contained in:
9
cores/esp32/wiring_shift.h
Normal file
9
cores/esp32/wiring_shift.h
Normal file
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
#define LSBFIRST 0
|
||||
#define MSBFIRST 1
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
uint8_t shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder);
|
||||
void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t val);
|
Reference in New Issue
Block a user