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

Bugfix PDOHelper.cs:411 misprint #30 #266

Closed trojanobelix closed 1 year ago

trojanobelix commented 2 years ago

there is

if( (configindex<0x1400) || (configindex >= 0x1a00) || ((configindex>=1600) && (configindex<0x1800)))

1600 in decimal. Must be in hex:

if( (configindex<0x1400) || (configindex >= 0x1a00) || ((configindex>=0x1600) && (configindex<0x1800)))

Fixed!

trojanobelix commented 1 year ago

Not relevant anymore