Appears to be on line 2227 in packet-v2gdin.c:
if (dc_evchargeparameter->EVMaximumPowerLimit_isUsed) {
dissect_v2gdin_physicalvalue(
&dc_evchargeparameter->EVMaximumPowerLimit,
tvb, pinfo, subtree,
ett_v2gdin_struct_dinPhysicalValueType,
"EVMaximumPowertLimit");
Also line 2309 in packet-v2giso1.c:
if (dc_evchargeparameter->EVMaximumPowerLimit_isUsed) {
dissect_v2giso1_physicalvalue(
&dc_evchargeparameter->EVMaximumPowerLimit,
tvb, pinfo, subtree,
ett_v2giso1_struct_iso1PhysicalValueType,
"EVMaximumPowertLimit");
Not present in packet-v2giso2.c. I think the breakout I requested back in issue #50 wasn't added to that flavor of dissector, but I don't use it so doesn't matter to me. :)
Found a typo in the dissector:
Appears to be on line 2227 in packet-v2gdin.c: if (dc_evchargeparameter->EVMaximumPowerLimit_isUsed) { dissect_v2gdin_physicalvalue( &dc_evchargeparameter->EVMaximumPowerLimit, tvb, pinfo, subtree, ett_v2gdin_struct_dinPhysicalValueType, "EVMaximumPowertLimit");
Also line 2309 in packet-v2giso1.c: if (dc_evchargeparameter->EVMaximumPowerLimit_isUsed) { dissect_v2giso1_physicalvalue( &dc_evchargeparameter->EVMaximumPowerLimit, tvb, pinfo, subtree, ett_v2giso1_struct_iso1PhysicalValueType, "EVMaximumPowertLimit");
Not present in packet-v2giso2.c. I think the breakout I requested back in issue #50 wasn't added to that flavor of dissector, but I don't use it so doesn't matter to me. :)