Target ID vs Custom Name Issue

Possible bug, or am I wrong?

Frame 0x208 returns. 02, 62, 6D, 1E, 1E, 00, 2D. Right Turn signal on
01, 62, 6D, 1E, 1E, 00, 2D. Left Turn Signal on
00, 62, 6D, 1E, 1E, 00, 2D. All off

This code works….Using Custom Names

<frame id="0x208" endianess="big">    
              <value name="TEST LEFT" units="bits" offset="0" length="1" > </value> <!-- Left Turn -->
              <value name="TEST RIGHT" units="bits" offset="0" length="1" conversion="V>>1"> </value> <!-- Right Turn -->
          </frame>

This one does not … When using target IDs

<frame id="0x208" endianess="big">    
              <value targetid="160" units="bits" offset="0" length="1" > </value> <!-- Left Turn -->
              <value targetid="161" units="bits" offset="0" length="1" conversion="V>>1"> </value> <!-- Right Turn -->
          </frame>

I am also having the same problem with Speed ,in another frame… Custom Name will work, Target ID does not

I would use

value targetId=“160” units=“bit” startbit=“0” bitcount=“1”
value targetId=“161” units=“bit” startbit=“1” bitcount=“1”

In your example, you are have ‘targetid’ instead of ‘targetId’, maybe that is causing the problem.

I’m sure you are right , helps to have a second set of eyes from time to time , Thanks

1 Like

Makes sense , I’ll try that out after I fix my typo… :rofl: