mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-20 09:52:13 +01:00
29 lines
400 B
C
29 lines
400 B
C
/*
|
|
%atmel_license%
|
|
*/
|
|
|
|
#ifndef _WIRING_SHIFT_
|
|
#define _WIRING_SHIFT_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* \brief
|
|
*/
|
|
extern uint32_t shiftIn( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBitOrder ) ;
|
|
|
|
|
|
/*
|
|
* \brief
|
|
*/
|
|
extern void shiftOut( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBitOrder, uint32_t ulVal ) ;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _WIRING_SHIFT_ */
|