1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00

Revert IODevice.h change

This commit is contained in:
peteGSX 2023-02-09 12:45:34 +10:00
parent ad4a0a9592
commit 93ac1b6d61

View File

@ -242,12 +242,11 @@ protected:
// Current state of device
DeviceStateEnum _deviceState = DEVSTATE_DORMANT;
// Method to find device handling Vpin
static IODevice *findDevice(VPIN vpin);
private:
// Method to check whether the vpin corresponds to this device
bool owns(VPIN vpin);
// Method to find device handling Vpin
static IODevice *findDevice(VPIN vpin);
IODevice *_nextDevice = 0;
unsigned long _nextEntryTime;
static IODevice *_firstDevice;