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

Compare commits

..

No commits in common. "4b2c0702a49f3b11ab0f8af5e9d6eac5e745db6b" and "9f38dae8ba99aea18bb82ecade79dad5c2ffec01" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -30,8 +30,8 @@
class PCA9555 : public GPIOBase<uint16_t> { class PCA9555 : public GPIOBase<uint16_t> {
public: public:
static void create(VPIN vpin, uint8_t nPins, I2CAddress i2cAddress, int interruptPin=-1) { static void create(VPIN vpin, int nPins, uint8_t I2CAddress, int interruptPin=-1) {
if (checkNoOverlap(vpin, nPins, i2cAddress)) new PCA9555(vpin,nPins, i2cAddress, interruptPin); new PCA9555(vpin, min(nPins,16), I2CAddress, interruptPin);
} }
// Constructor // Constructor

View File

@ -5,7 +5,6 @@
#define VERSION "5.0.1" #define VERSION "5.0.1"
// 5.0.1 - Check bad AT firmware version // 5.0.1 - Check bad AT firmware version
// - Update IO_PCA9555.h reflecting IO_MCP23017.h changes to support PCA9548 mux
// 5.0.0 - Make 4.2.69 the 5.0.0 release // 5.0.0 - Make 4.2.69 the 5.0.0 release
// 4.2.69 - Bugfix: Make <!> work in DC mode // 4.2.69 - Bugfix: Make <!> work in DC mode
// 4.2.68 - Rename track mode OFF to NONE // 4.2.68 - Rename track mode OFF to NONE