mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Removed the old cRIO channel routing that was preventing encoders from working in C++
Change-Id: I6e103f9960a8bf0930ea7e40f668cad116363370
This commit is contained in:
@@ -53,8 +53,8 @@ public:
|
||||
I2C* GetI2C(uint32_t address);
|
||||
|
||||
static DigitalModule* GetInstance(uint8_t moduleNumber);
|
||||
static uint8_t RemapDigitalChannel(uint32_t channel) { return 15 - channel; }; // TODO: Need channel validation
|
||||
static uint8_t UnmapDigitalChannel(uint32_t channel) { return 15 - channel; }; // TODO: Need channel validation
|
||||
static uint8_t RemapDigitalChannel(uint32_t channel) { return channel; }; // TODO: Need channel validation
|
||||
static uint8_t UnmapDigitalChannel(uint32_t channel) { return channel; }; // TODO: Need channel validation
|
||||
|
||||
private:
|
||||
uint8_t m_module;
|
||||
|
||||
Reference in New Issue
Block a user