1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-12-24 13:21:23 +01:00

Add registers

This commit is contained in:
peteGSX 2022-12-09 14:41:48 +10:00
parent 8cbcf5df32
commit 2d27cb052d

View File

@ -74,6 +74,15 @@ private:
}
uint8_t _i2cAddress;
enum {
REG_EXIOINIT = 0x00, // Flag to initialise setup procedure
REG_EXIODPIN = 0x01, // Flag we're sending digital pin assignments
REG_EXIOAPIN = 0x02, // Flag we're sending analogue pin assignments
REG_EXIORDY = 0x03, // Flag we have completed setup procedure, also for EX-IO to ACK setup
REG_EXIODDIR = 0x04, // Flag we're sending digital pin direction configuration
REG_EXIODPUP = 0x05, // Flag we're sending digital pin pullup configuration
};
};
#endif