56 lines
993 B
C
Raw Normal View History

2020-11-27 11:16:22 +01:00
#pragma once
//
// FILE: FastShiftIn.h
// AUTHOR: Rob Tillaart
2022-11-16 16:07:44 +01:00
// VERSION: 0.3.1
2020-11-27 11:16:22 +01:00
// PURPOSE: Fast ShiftIn for 74HC165 register, AVR optimized
// DATE: 2013-09-29
2020-11-27 11:16:22 +01:00
// URL: https://github.com/RobTillaart/FastShiftIn
2021-01-29 12:31:58 +01:00
#include "Arduino.h"
2021-01-29 12:31:58 +01:00
2022-11-16 16:07:44 +01:00
#define FASTSHIFTIN_LIB_VERSION (F("0.3.1"))
2021-01-29 12:31:58 +01:00
class FastShiftIn
{
public:
2022-11-05 12:41:07 +01:00
// bitOrder = { LSBFIRST, MSBFIRST };
2022-11-05 18:50:25 +01:00
FastShiftIn(uint8_t dataIn, uint8_t clockPin, uint8_t bitOrder = LSBFIRST);
2021-01-29 12:31:58 +01:00
int read(void);
2022-11-05 18:50:25 +01:00
int lastRead(void);
2021-01-29 12:31:58 +01:00
2022-11-05 18:50:25 +01:00
bool setBitOrder(uint8_t bitOrder);
uint8_t getBitOrder(void);
2020-11-27 11:16:22 +01:00
2022-11-05 12:41:07 +01:00
// overrule bitOrder (most optimized).
2021-01-29 12:31:58 +01:00
int readLSBFIRST(void);
int readMSBFIRST(void);
private:
2022-11-05 18:50:25 +01:00
uint8_t _bitOrder;
2021-01-29 12:31:58 +01:00
int _value;
2022-11-05 18:50:25 +01:00
#if defined(ARDUINO_ARCH_AVR) || defined(ARDUINO_ARCH_MEGAAVR)
2022-11-05 18:50:25 +01:00
volatile uint8_t *_dataInRegister;
uint8_t _dataInBit;
2022-11-05 18:50:25 +01:00
volatile uint8_t *_clockRegister;
uint8_t _clockBit;
#else
uint8_t _dataPinIn;
uint8_t _clockPin;
#endif
};
2021-12-17 15:14:55 +01:00
2020-11-27 11:16:22 +01:00
// -- END OF FILE --
2022-11-05 18:50:25 +01:00