Switch to 0-based for all pins on the RoboRIO [artf2564]

Change-Id: I249965a9d55aec53b7d8a9be3ba5cc43500ddda4
This commit is contained in:
thomasclark
2014-06-10 12:33:59 -04:00
parent 59dfb4d216
commit 35ac240d4c
20 changed files with 149 additions and 150 deletions

View File

@@ -105,7 +105,7 @@ uint32_t DigitalInput::GetChannel()
*/
uint32_t DigitalInput::GetChannelForRouting()
{
return GetChannel() - 1;
return GetChannel();
}
/**