robincornelius / libedssharp

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

warnings checking xdd with vectors caneds #209

Closed Reissner closed 4 years ago

Reissner commented 4 years ago

I generated xdd file with eds editor from my eds. Checking result with caneds from vector, I found a lot of warnings.

Among others in index 1003. I could eliminate those by manually editing:

   <parameter uniqueID="UID_PARAM_1003" >   **<!--access="readWrite"-->**
            <label lang="en">Pre-defined error field</label>
            <description lang="en" />
            <denotation>
              <label lang="en" />
            </denotation>
            <defaultValue value="" />
          </parameter>

and

   <CANopenObject index="1003" name="Pre-defined error field" 
      objectType="8"  PDOmapping="no" uniqueIDRef="UID_PARAM_1003" subNumber="9">
        **<!--  dataType="0007" accessType="rw"  -->**

This means, that seemingly data type and access type are not allowed here. I think, for arrays and records these values are not allowed.