mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2024-10-05 20:47:50 -04:00
46 lines
648 B
C++
46 lines
648 B
C++
// created by Jean-Marc Zingg to be the GxIO io base class for the GxTFT library
|
|
//
|
|
// License: GNU GENERAL PUBLIC LICENSE V3, see LICENSE
|
|
|
|
#include "GxIO.h"
|
|
|
|
uint8_t GxIO::transferTransaction(uint8_t d)
|
|
{
|
|
writeDataTransaction(d);
|
|
return readDataTransaction();
|
|
}
|
|
|
|
uint16_t GxIO::transfer16Transaction(uint16_t d)
|
|
{
|
|
writeData16Transaction(d);
|
|
return readData16Transaction();
|
|
}
|
|
|
|
uint8_t GxIO::readDataTransaction()
|
|
{
|
|
return 0;
|
|
};
|
|
|
|
uint16_t GxIO::readData16Transaction()
|
|
{
|
|
return 0;
|
|
};
|
|
|
|
uint8_t GxIO::readData()
|
|
{
|
|
return 0;
|
|
};
|
|
|
|
uint16_t GxIO::readData16()
|
|
{
|
|
return 0;
|
|
};
|
|
|
|
uint32_t GxIO::readRawData32(uint8_t part)
|
|
{
|
|
return 0;
|
|
};
|
|
|
|
|
|
|