GY-63_MS5611/libraries/FastShiftOut/FastShiftOut.h

43 lines
990 B
C
Raw Normal View History

2020-11-27 05:16:22 -05:00
#pragma once
2013-08-28 16:30:00 -04:00
//
// FILE: FastShiftOut.h
// AUTHOR: Rob Tillaart
2021-01-29 06:31:58 -05:00
// VERSION: 0.2.2
// PURPOSE: shiftout that implements the Print interface
// DATE: 2013-08-22
2020-11-27 05:16:22 -05:00
// URL: https://github.com/RobTillaart/FastShiftOut
2013-08-28 16:30:00 -04:00
//
#include "Arduino.h"
#include "Print.h"
2021-01-29 06:31:58 -05:00
#define FASTSHIFTOUT_LIB_VERSION (F("0.2.2"))
2020-11-27 05:16:22 -05:00
class FastShiftOut : public Print
2013-08-28 16:30:00 -04:00
{
public:
2020-11-27 05:16:22 -05:00
// bitorder = { LSBFIRST, MSBFIRST };
FastShiftOut(const uint8_t datapin, const uint8_t clockpin, const uint8_t bitOrder = LSBFIRST);
2021-01-29 06:31:58 -05:00
size_t write(const uint8_t data);
uint8_t lastWritten(void) { return _value; };
bool setBitOrder(const uint8_t bitOrder);
uint8_t getBitOrder(void) { return _bitorder; };
2020-11-27 05:16:22 -05:00
// overrule bitorder (most optimized).
2021-01-29 06:31:58 -05:00
size_t writeLSBFIRST(const uint8_t data);
size_t writeMSBFIRST(const uint8_t data);
2013-08-28 16:30:00 -04:00
private:
2020-11-27 05:16:22 -05:00
uint8_t _bitorder;
2021-01-29 06:31:58 -05:00
int _value;
2020-11-27 05:16:22 -05:00
uint8_t _databit;
volatile uint8_t *_dataout;
2020-11-27 05:16:22 -05:00
uint8_t _clockbit;
volatile uint8_t *_clockout;
2013-08-28 16:30:00 -04:00
};
2020-11-27 05:16:22 -05:00
// -- END OF FILE --