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

Include driver in IODevice.h

This commit is contained in:
peteGSX 2022-12-29 08:44:08 +10:00
parent ffdf023de6
commit 322cb3db54
3 changed files with 2 additions and 4 deletions

View File

@ -408,5 +408,6 @@ private:
#include "IO_MCP23008.h"
#include "IO_MCP23017.h"
#include "IO_PCF8574.h"
#include "IO_EXIOExpander.h"
#endif // iodevice_h

View File

@ -23,8 +23,7 @@
* interacting with the device for all input/output duties.
*
* To create EX-IOExpander devices, these are defined in myHal.cpp:
*
* #include "IO_EXIOExpander.h"
* (Note the device driver is included by default)
*
* void halSetup() {
* // EXIOExpander::create(vpin, num_vpins, i2c_address, digitalPinCount, analoguePinCount);
@ -45,7 +44,6 @@
#ifndef IO_EX_IOEXPANDER_H
#define IO_EX_IOEXPANDER_H
#include "IODevice.h"
#include "I2CManager.h"
#include "DIAG.h"
#include "FSH.h"

View File

@ -21,7 +21,6 @@
#include "IO_VL53L0X.h" // Laser time-of-flight sensor
#include "IO_DFPlayer.h" // MP3 sound player
//#include "IO_EXTurntable.h" // Turntable-EX turntable controller
// #include "IO_EXIOExpander.h" // EX-IOExpander device driver
//==========================================================================