robincornelius / libedssharp

A CanOpen EDS editor and library in C# with CanOpenNode export for Object Dictionary
GNU General Public License v3.0
227 stars 134 forks source link

PDOHelper.cs:411 misprint #265

Open orthemius opened 2 years ago

orthemius commented 2 years ago

file ./libEDSsharp/PDOHelper.cs line 411 there is if( (configindex<0x1400) || (configindex >= 0x1a00) || ((configindex>=1600) && (configindex<0x1800))) 1600 in dec must be in hex: if( (configindex<0x1400) || (configindex >= 0x1a00) || ((configindex>=0x1600) && (configindex<0x1800)))

trojanobelix commented 2 years ago

Fixed with pull request #266