CANopenNode / CANopenEditor

CANopen Object Dictionary Editor
GNU General Public License v3.0
120 stars 60 forks source link

PDOHelper.cs:411 misprint #30

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)))

trojanobelix commented 1 year ago

corrected