<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">This is what I get:<div class=""><br class=""></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div class=""><font face="Andale Mono" class=""><span style="font-size: 18px;" class="">OVMS# dbc load guenther /sd/testdbc/test.dbc</span></font></div><div class=""><font face="Andale Mono" class=""><span style="font-size: 18px;" class="">Error: Failed to load DBC guenther from /sd/testdbc/test.dbc</span></font></div><div class=""><font face="Andale Mono" class=""><span style="font-size: 18px;" class="">E (71557) dbc-parser: Error in line 267 'syntax error, unexpected T_BA_DEF, expecting T_SEMICOLON or T_INT_VAL', symbol 'BA_DEF_'</span></font></div></div></blockquote><div class=""><div><br class=""></div><div>Problem is that the BA_* symbols are not currently used or supported.</div><div><br class=""></div><div>Removing those, I get:</div><div><br class=""></div></div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class=""><div><div><font face="Andale Mono" class=""><span style="font-size: 18px;" class="">OVMS# dbc load guenther /sd/testdbc/test.dbc</span></font></div><div><font face="Andale Mono" class=""><span style="font-size: 18px;" class="">Loaded DBC guenther ok</span></font></div></div></div></blockquote><div class=""><div><br class=""></div><div>We only currently support integer (signed or unsigned) metrics in DBC files, so BA_* not really useful for us. At some point, I will add support (primarily to get string and floating point signals).</div><div><br class=""></div><div>Regards, Mark.</div><div><br class=""><blockquote type="cite" class=""><div class="">On 14 Feb 2019, at 3:11 AM, Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">privat@guentherhuck.at</a>> wrote:</div><br class="Apple-interchange-newline"><div class="">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" class="">
<div style="WORD-WRAP: break-word; -webkit-nbsp-mode: space" dir="ltr" class="">
<div dir="ltr" class="">
<div style="font-size: 12pt; font-family: Calibri;" class="">
<div class="">Hello Mark<br class=""><br class="">I tried to load the dbc file (test.dbc) from 500e
to OVMS 3 but always get the error message :<br class=""></div>
<div class="">“Error: Failed to load DBC 500e from /sd/dbc/test.dbc”</div>
<div class=""> </div>
<div class="">I can load a example file from leafpowertrain but not file from
500e.<br class=""><br class="">Maybe you can help me to find the mistake?</div>
<div class=""> </div>
<div class="">Guenther</div>
<div style="font-size: small; text-decoration: none; font-family: Calibri; font-weight: normal; font-style: normal; display: inline;" class="">
<div style="FONT: 10pt tahoma" class="">
<div class=""> </div>
<div style="BACKGROUND: #f5f5f5" class="">
<div style="font-color: black" class=""><b class="">From:</b> <a title="mark@webb-johnson.net" href="mailto:mark@webb-johnson.net" class="">Mark Webb-Johnson</a> </div>
<div class=""><b class="">Sent:</b> Tuesday, February 12, 2019 6:12 AM</div>
<div class=""><b class="">To:</b> <a title="ovmsdev@lists.openvehicles.com" href="mailto:ovmsdev@lists.openvehicles.com" class="">OVMS Developers</a> </div>
<div class=""><b class="">Subject:</b> Re: [Ovmsdev] Collecting information on the Fiat
500e</div></div></div>
<div class=""> </div></div>
<div style="font-size: small; text-decoration: none; font-family: Calibri; font-weight: normal; font-style: normal; display: inline;" class="">Guenther,
<div class=""> </div>
<div class="">With the latest code (3.2.001-80-g731c916e or later), you should be able to
try this. Instructions are pretty much the same as previously given:</div>
<div class=""> </div>
<div class="">
<div class="">
<ol class="MailOutline">
<li class="">Put your DBC file in /store/dbc/<vehicletype>.dbc<br class=""><br class="">
</li><li class="">Load the DBC:<br class=""><br class="">ovms# dbc load <vehicletype>
/store/dbc/<vehicletype>.dbc<br class=""><br class="">(or ‘dbc autoload’ to load all DBC
files in that directory)<br class=""><br class="">Note: It should be automatically loaded on
boot, and you can use ‘dbc list’ to confirm.<br class=""><br class="">
</li><li class="">Configure your vehicle type and assign the DBC to CAN bus #1 for
it:<br class=""><br class="">config set auto vehicle.type DBC<br class="">config set vehicle dbc.can1
<vehicletype><br class=""></li></ol></div>
<div class=""> </div>
<div class="">Within the DBC, set the signal name the same as the OVMS metric name (you
can use periods ‘.’ as separators, or ‘_’ will be converted automatically for
you). Connect to the car, and the CAN bus data should start to be processed and
metrics updated based on your DBC file. Only integer DBC signals are supported
(either signed or unsigned should be ok), but factors and/or offsets can convert
these automatically to floats.</div>
<div class=""> </div>
<div class="">At the moment, you can only change the DBC on disk (/store/dbc/*.dbc) then
reload it. However, it will be locked (as it is used by your OvmsVehicleDBC
vehicle) . So you will have to either clear the vehicle module (‘vehicle
module’), reload the DBC, then reload the vehicle module (‘vehicle module DBC’).
Alternatively, you can simply reboot the OVMS. Later on I will improve on this
to support hot-reloading and in-memory modification of live DBC files (via
retool).</div>
<div class=""> </div>
<div class="">Remember that extended CAN IDs need to have the high bit set in DBC format.
So, extended ID 100 is 2147483748 (2^31 + 100).</div>
<div class=""> </div>
<div class="">Regards, Mark.</div>
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On 11 Feb 2019, at 11:35 AM, Mark Webb-Johnson <<a href="mailto:mark@webb-johnson.net" class="">mark@webb-johnson.net</a>> wrote:</div>
<div class=""> </div>
<div class="">
<div style="WORD-WRAP: break-word; -webkit-nbsp-mode: space" class="">Guenther,
<div class=""> </div>
<div class="">The code is not finished yet, so no documentation at the moment. I will
document it when it is working.</div>
<div class=""> </div>
<div class="">The overall plan (for a single CAN bus, single DBC, for example)
is:</div>
<div class=""> </div>
<div class="">
<ol class="MailOutline">
<li class="">Put your DBC file in /store/dbc/<vehicletype>.dbc.<br class=""><br class="">
</li><li class="">You should now find it automatically loaded on boot. You can use ‘dbc
list’ to confirm.<br class=""><br class="">
</li><li class="">config set vehicle dbc.can1 <vehicletype><br class=""><br class="">
</li><li class="">Configure your vehicle type as “DBC”.</li></ol></div>
<div class=""> </div>
<div class="">The above is close to completion - just waiting for the decode function
which I am struggling with (eMail sent to ovmsdev mailing list earlier
today).</div>
<div class=""> </div>
<div class="">The retools system will have facilities to maintain DBC files (in memory)
and save them back to disk. It will also use DBC files as its main way of
working with messages.</div>
<div class=""> </div>
<div class="">Regards, Mark.<br class="">
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On 11 Feb 2019, at 12:38 AM, Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">privat@guentherhuck.at</a>>
wrote:</div>
<div class=""> </div>
<div class="">
<div style="WORD-WRAP: break-word; -webkit-nbsp-mode: space" dir="ltr" class="">
<div dir="ltr" class="">
<div style="FONT-SIZE: 12pt; FONT-FAMILY: calibri" class="">
<div class="">Thank you Mark!<br class=""><br class="">But my question was if there is a manual how I
can use the dbc file in OVMS 3.<br class=""><br class="">I cannot find a description.</div>
<div class=""> </div>
<div class="">Guenther</div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div style="FONT: 10pt tahoma" class="">
<div class=""> </div>
<div style="BACKGROUND: #f5f5f5" class="">
<div style="font-color: black" class=""><b class="">From:</b> <a title="mark@webb-johnson.net" href="mailto:mark@webb-johnson.net" class="">Mark Webb-Johnson</a> </div>
<div class=""><b class="">Sent:</b> Friday, February 08, 2019 12:57 AM</div>
<div class=""><b class="">To:</b> <a title="ovmsdev@lists.openvehicles.com" href="mailto:ovmsdev@lists.openvehicles.com" class="">OVMS Developers</a> </div>
<div class=""><b class="">Subject:</b> Re: [Ovmsdev] Collecting information on the Fiat
500e</div></div></div>
<div class=""> </div></div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">This
is quite good:
<div class=""> </div>
<blockquote style="BORDER-TOP: medium none; BORDER-RIGHT: medium none; BORDER-BOTTOM: medium none; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 0px 0px 0px 40px; BORDER-LEFT: medium none; PADDING-RIGHT: 0px" type="cite" class="">
<div class=""><a href="http://socialledge.com/sjsu/index.php/DBC_Format" class="">http://socialledge.com/sjsu/index.php/DBC_Format</a></div></blockquote>
<div class="">
<div class=""> </div>
<div class="">There are a large number of examples here:</div>
<div class=""> </div></div>
<blockquote style="BORDER-TOP: medium none; BORDER-RIGHT: medium none; BORDER-BOTTOM: medium none; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 0px; MARGIN: 0px 0px 0px 40px; BORDER-LEFT: medium none; PADDING-RIGHT: 0px" type="cite" class="">
<div class="">
<div class=""><a href="https://github.com/commaai/opendbc" class="">https://github.com/commaai/opendbc</a></div></div></blockquote>
<div class="">
<div class=""> </div>
<div class="">(although many are not 100% standards conformant, so will not parse
correctly)</div>
<div class=""> </div>
<div class="">Attached is the formal specification.</div>
<div class=""> </div>
<div class="">Regards, Mark.</div>
<div class=""> </div>
<div class=""></div></div>
<div class=""> </div>
<hr class="">
<div class="">
<div class=""></div>
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On 8 Feb 2019, at 12:35 AM, Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">privat@guentherhuck.at</a>>
wrote:</div>
<div class=""> </div>
<div class="">
<div dir="ltr" class="">
<div dir="ltr" class="">
<div style="FONT-SIZE: 12pt; FONT-FAMILY: calibri" class="">
<div class="">Is there somewhere in the net a manual how to make a dbc-file
impemention?</div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div style="FONT: 10pt tahoma" class="">
<div class=""><font size="3" face="Calibri" class=""></font> </div>
<div class=""><font size="3" face="Calibri" class="">Thx Guenther</font></div>
<div class=""><font size="3" face="Calibri" class=""></font> </div>
<div style="BACKGROUND: #f5f5f5" class="">
<div style="font-color: black" class=""><b class="">From:</b> <a title="mark@webb-johnson.net" href="mailto:mark@webb-johnson.net" class="">Mark Webb-Johnson</a> </div>
<div class=""><b class="">Sent:</b> Thursday, February 07, 2019 2:44 PM</div>
<div class=""><b class="">To:</b> <a title="ovmsdev@lists.openvehicles.com" href="mailto:ovmsdev@lists.openvehicles.com" class="">OVMS Developers</a> </div>
<div class=""><b class="">Subject:</b> Re: [Ovmsdev] Collecting information on the Fiat
500e</div></div></div>
<div class=""> </div></div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div dir="ltr" class=""></div>
<div dir="ltr" class="">This also looks to be a good candidate for a DBC
implementation. That way, no coding required, and Gunther can tune and add
metrics himself.</div>
<div dir="ltr" class="">With the iOS App done, and now in testing, I am back working
on DBC and RE tools. Made some progress these last two days (Chinese new
year holidays here), and hoping to have something usable this
weekend.</div>
<div dir="ltr" class=""> </div>
<div dir="ltr" class="">But, need those crtd can bus dumps to validate it.</div>
<div dir="ltr" class=""> </div>
<div dir="ltr" class="">Regards, Mark</div>
<div dir="ltr" class=""><br class="">On 6 Feb 2019, at 9:12 PM, Mark Webb-Johnson <<a href="mailto:mark@webb-johnson.net" class="">mark@webb-johnson.net</a>>
wrote:<br class=""><br class=""></div>
<blockquote type="cite" class="">
<div dir="ltr" class="">I think it best to also get a few CAN dumps:
<div class=""> </div>
<div class="">
<ol class="MailOutline">
<li class="">While car is parked, idle, asleep
</li><li class="">While car is parked, but awake
</li><li class="">While car is driving</li></ol>
<div class=""> </div>
<div class="">These should be in CRTD format.</div>
<div class=""> </div>
<div class="">They will allow us to double-check the actual CAN bus traffic to
ensure it matches what is shown in the spreadsheet.</div>
<div class=""> </div>
<div class="">Regards, Mark.</div>
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On 6 Feb 2019, at 8:55 PM, Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">privat@guentherhuck.at</a>>
wrote:</div>
<div class=""> </div>
<div class="">
<div dir="ltr" bgcolor="#ffffff" text="#000000" class="">
<div dir="ltr" class="">
<div style="FONT-SIZE: 12pt; FONT-FAMILY: calibri" class="">
<div class="">Hello Michael<br class=""><br class="">That’s perfect! Ich can send you some more
CAN-ID’S. Tell me what is important for the first
implementation.<br class=""><br class=""><span id="cid:7132DD3DF2744DB387807E76A5B3EB2B@GuentherPCHP" class=""><image[3].png></span><br class=""><br class=""><span id="cid:4047C12C63A34679BEE2C1D0D89B876F@GuentherPCHP" class=""><image[7].png></span></div>
<div class=""> </div>
<div class=""><span id="cid:E273826790134F5C8B57CF1C3CADCDC5@GuentherPCHP" class=""><image[10].png></span></div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div style="FONT: 10pt tahoma" class="">
<div class=""><font size="3" face="Calibri" class=""></font> </div>
<div class=""><span id="cid:EF33978055C1464482B0ED72629DBD78@GuentherPCHP" class=""><image[13].png></span></div>
<div class=""><font size="3" face="Calibri" class=""></font> </div>
<div class=""><span id="cid:E0631214B24D468E85045A782CA5A6B7@GuentherPCHP" class=""><image[16].png></span></div>
<div style="BACKGROUND: #f5f5f5" class="">
<div style="font-color: black" class=""><b class="">From:</b> <a title="dexter@expeedo.de" href="mailto:dexter@expeedo.de" class="">Michael Balzer</a> </div>
<div class=""><b class="">Sent:</b> Wednesday, February 06, 2019 12:55 PM</div>
<div class=""><b class="">To:</b> <a title="ovmsdev@lists.openvehicles.com" href="mailto:ovmsdev@lists.openvehicles.com" class="">ovmsdev@lists.openvehicles.com</a>
</div>
<div class=""><b class="">Subject:</b> Re: [Ovmsdev] Collecting information on the Fiat
500e</div></div></div>
<div class=""> </div></div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div class="moz-cite-prefix">Günther,<br class=""><br class="">yes, that looks
sufficient.<br class=""><br class="">It's always best if an actual vehicle user does the
code, but we can provide a first basic implementation to build
upon.<br class=""><br class="">Regards,<br class="">Michael<br class=""><br class=""><br class="">Am 05.02.19 um 18:22
schrieb Guenther Huck:<br class=""></div>
<blockquote cite="mid:729BC9FDDF9942678120A6D6432C8D9A@GuentherPCHP" type="cite" class="">
<div dir="ltr" class="">
<div style="FONT-SIZE: 12pt; FONT-FAMILY: calibri" class="">
<div class="">Is this ok?<br class=""><br class=""><span id="cid:3BBBA0805B4E4CD0B723BB24F21A6327@GuentherPCHP" class=""><image[2].png></span></div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div style="FONT: 10pt tahoma" class="">
<div class=""> </div>
<div style="BACKGROUND: #f5f5f5" class="">
<div style="font-color: black" class=""><b class="">From:</b> <a title="privat@guentherhuck.at" href="mailto:privat@guentherhuck.at" moz-do-not-send="true" class="">Guenther Huck</a> </div>
<div class=""><b class="">Sent:</b> Tuesday, February 05, 2019 6:06 PM</div>
<div class=""><b class="">To:</b> <a title="ovmsdev@lists.openvehicles.com" href="mailto:ovmsdev@lists.openvehicles.com" moz-do-not-send="true" class="">OVMS Developers</a> </div>
<div class=""><b class="">Subject:</b> Re: [Ovmsdev] Collecting information on the
Fiat 500e</div></div></div>
<div class=""> </div></div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div dir="ltr" class="">
<div style="FONT-SIZE: 12pt; FONT-FAMILY: calibri" class="">
<div class="">Hello Mark<br class=""><br class="">I have a Fiat 500e and asked if there is
anybody who is firm with the CAN Id’s.<br class=""><br class="">In the meantime I have
some CAN informations for Fiat 500e and can give to you or
somebody who is familiar to programm the OVMS for this car.<br class="">I
don’t have enough experiance to programm this. Sorry!<br class=""><br class="">What
informations to you need to insert this car to your project
?<br class=""><br class="">Guenther</div>
<div style="FONT-SIZE: small; TEXT-DECORATION: none; FONT-FAMILY: calibri; FONT-WEIGHT: normal; FONT-STYLE: normal; DISPLAY: inline" class="">
<div style="FONT: 10pt tahoma" class="">
<div class=""> </div>
<div style="BACKGROUND: #f5f5f5" class=""> </div></div></div></div></div></div></div></div><br class="">
<fieldset class="mimeAttachmentHeader"></fieldset> <pre class="moz-quote-pre" wrap="">_______________________________________________
OvmsDev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:OvmsDev@lists.openvehicles.com">OvmsDev@lists.openvehicles.com</a>
<a class="moz-txt-link-freetext" href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>
</pre></blockquote><br class=""><br class=""><pre class="moz-signature" cols="144">--
Michael Balzer * Helkenberger Weg 9 * D-58256 Ennepetal
Fon 02333 / 833 5735 * Handy 0176 / 206 989 26
</pre>
<div class=""> </div>
<hr class="">
_______________________________________________<br class="">OvmsDev mailing
list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></div></div></div>_______________________________________________<br class="">OvmsDev
mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></blockquote></div>
<div class=""> </div></div></div></blockquote>
<blockquote type="cite" class="">
<div dir="ltr" class=""><span class="">_______________________________________________</span><br class=""><span class="">OvmsDev
mailing list</span><br class=""><span class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a></span><br class=""><span class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a></span><br class=""></div></blockquote>
<div class=""> </div>
<hr class="">
_______________________________________________<br class="">OvmsDev mailing
list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></div></div></div>_______________________________________________<br class="">OvmsDev
mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></blockquote></div>
<div class=""> </div></div>
<div class=""> </div>
<hr class="">
This is quite good:<br class=""><br class=""><a href="http://socialledge.com/sjsu/index.php/DBC_Format" class="">http://socialledge.com/sjsu/index.php/DBC_Format</a>
<<a href="http://socialledge.com/sjsu/index.php/DBC_Format" class="">http://socialledge.com/sjsu/index.php/DBC_Format</a>><br class=""><br class="">There
are a large number of examples here:<br class=""><br class=""><a href="https://github.com/commaai/opendbc" class="">https://github.com/commaai/opendbc</a>
<<a href="https://github.com/commaai/opendbc" class="">https://github.com/commaai/opendbc</a>><br class=""><br class="">(although
many are not 100% standards conformant, so will not parse
correctly)<br class=""><br class="">Attached is the formal specification.<br class=""><br class="">Regards,
Mark.<br class=""><br class=""><br class=""><br class="">> On 8 Feb 2019, at 12:35 AM, Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">privat@guentherhuck.at</a>>
wrote:<br class="">> <br class="">> Is there somewhere in the net a manual how to make a
dbc-file impemention?<br class="">> <br class="">> Thx Guenther<br class="">>
<br class="">> From: Mark Webb-Johnson <<a href="mailto:mark@webb-johnson.net" class="">mailto:mark@webb-johnson.net</a>><br class="">>
Sent: Thursday, February 07, 2019 2:44 PM<br class="">> To: OVMS Developers <<a href="mailto:ovmsdev@lists.openvehicles.com" class="">mailto:ovmsdev@lists.openvehicles.com</a>><br class="">>
Subject: Re: [Ovmsdev] Collecting information on the Fiat 500e<br class="">>
<br class="">> This also looks to be a good candidate for a DBC implementation.
That way, no coding required, and Gunther can tune and add metrics
himself.<br class="">> With the iOS App done, and now in testing, I am back
working on DBC and RE tools. Made some progress these last two days (Chinese
new year holidays here), and hoping to have something usable this
weekend.<br class="">> <br class="">> But, need those crtd can bus dumps to
validate it.<br class="">> <br class="">> Regards, Mark<br class="">> <br class="">> On 6 Feb
2019, at 9:12 PM, Mark Webb-Johnson <<a href="mailto:mark@webb-johnson.net" class="">mark@webb-johnson.net</a> <<a href="mailto:mark@webb-johnson.net" class="">mailto:mark@webb-johnson.net</a>>>
wrote:<br class="">> <br class="">>> I think it best to also get a few CAN
dumps:<br class="">>> <br class="">>> While car is parked, idle,
asleep<br class="">>> While car is parked, but awake<br class="">>> While car is
driving<br class="">>> <br class="">>> These should be in CRTD
format.<br class="">>> <br class="">>> They will allow us to double-check
the actual CAN bus traffic to ensure it matches what is shown in the
spreadsheet.<br class="">>> <br class="">>> Regards, Mark.<br class="">>>
<br class="">>>> On 6 Feb 2019, at 8:55 PM, Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">privat@guentherhuck.at</a> <<a href="mailto:privat@guentherhuck.at" class="">mailto:privat@guentherhuck.at</a>>>
wrote:<br class="">>>> <br class="">>>> Hello Michael<br class="">>>>
<br class="">>>> That’s perfect! Ich can send you some more CAN-ID’S. Tell
me what is important for the first implementation.<br class="">>>>
<br class="">>>> <image[3].png><br class="">>>> <br class="">>>>
<image[7].png><br class="">>>> <br class="">>>>
<image[10].png><br class="">>>> <br class="">>>>
<image[13].png><br class="">>>> <br class="">>>>
<image[16].png><br class="">>>> From: Michael Balzer <<a href="mailto:dexter@expeedo.de" class="">mailto:dexter@expeedo.de</a>><br class="">>>>
Sent: Wednesday, February 06, 2019 12:55 PM<br class="">>>> To: <a href="mailto:ovmsdev@lists.openvehicles.com" class="">ovmsdev@lists.openvehicles.com</a>
<<a href="mailto:ovmsdev@lists.openvehicles.com" class="">mailto:ovmsdev@lists.openvehicles.com</a>><br class="">>>>
Subject: Re: [Ovmsdev] Collecting information on the Fiat
500e<br class="">>>> <br class="">>>> Günther,<br class="">>>>
<br class="">>>> yes, that looks sufficient.<br class="">>>>
<br class="">>>> It's always best if an actual vehicle user does the code,
but we can provide a first basic implementation to build
upon.<br class="">>>> <br class="">>>> Regards,<br class="">>>>
Michael<br class="">>>> <br class="">>>> <br class="">>>> Am 05.02.19 um
18:22 schrieb Guenther Huck:<br class="">>>>> Is this
ok?<br class="">>>>> <br class="">>>>>
<image[2].png><br class="">>>>> <br class="">>>>> From:
Guenther Huck <<a href="mailto:privat@guentherhuck.at" class="">mailto:privat@guentherhuck.at</a>><br class="">>>>>
Sent: Tuesday, February 05, 2019 6:06 PM<br class="">>>>> To: OVMS
Developers <<a href="mailto:ovmsdev@lists.openvehicles.com" class="">mailto:ovmsdev@lists.openvehicles.com</a>><br class="">>>>>
Subject: Re: [Ovmsdev] Collecting information on the Fiat
500e<br class="">>>>> <br class="">>>>> Hello
Mark<br class="">>>>> <br class="">>>>> I have a Fiat 500e and asked
if there is anybody who is firm with the CAN Id’s.<br class="">>>>>
<br class="">>>>> In the meantime I have some CAN informations for Fiat
500e and can give to you or somebody who is familiar to programm the
OVMS for this car.<br class="">>>>> I don’t have enough experiance to
programm this. Sorry!<br class="">>>>> <br class="">>>>> What
informations to you need to insert this car to your project
?<br class="">>>>> <br class="">>>>>
Guenther<br class="">>>>> <br class="">>>>>
<br class="">>>>> <br class="">>>>> <br class="">>>>>
_______________________________________________<br class="">>>>> OvmsDev
mailing list<br class="">>>>> <a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a>
<<a href="mailto:OvmsDev@lists.openvehicles.com" class="">mailto:OvmsDev@lists.openvehicles.com</a>><br class="">>>>>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>
<<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>><br class="">>>>
<br class="">>>> <br class="">>>> -- <br class="">>>> Michael Balzer *
Helkenberger Weg 9 * D-58256 Ennepetal<br class="">>>> Fon 02333 / 833 5735
* Handy 0176 / 206 989 26<br class="">>>> <br class="">>>>
_______________________________________________<br class="">>>> OvmsDev
mailing list<br class="">>>> <a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a>
<<a href="mailto:OvmsDev@lists.openvehicles.com" class="">mailto:OvmsDev@lists.openvehicles.com</a>><br class="">>>>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>
<<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>><br class="">>>>
_______________________________________________<br class="">>>> OvmsDev
mailing list<br class="">>>> <a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a>
<<a href="mailto:OvmsDev@lists.openvehicles.com" class="">mailto:OvmsDev@lists.openvehicles.com</a>><br class="">>>>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>
<<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>><br class="">>>
<br class="">>> <br class="">>>
_______________________________________________<br class="">>> OvmsDev mailing
list<br class="">>> <a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a>
<<a href="mailto:OvmsDev@lists.openvehicles.com" class="">mailto:OvmsDev@lists.openvehicles.com</a>><br class="">>>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>
<<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a>><br class="">>
<br class="">> _______________________________________________<br class="">> OvmsDev
mailing list<br class="">> <a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class="">>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class="">>
_______________________________________________<br class="">> OvmsDev mailing
list<br class="">> <a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class="">>
<a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""><br class="">
<div class=""> </div>
<hr class="">
_______________________________________________<br class="">OvmsDev mailing
list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></div></div></div>_______________________________________________<br class="">OvmsDev
mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></blockquote></div>
<div class=""> </div></div></div>_______________________________________________<br class="">OvmsDev
mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class=""><a href="http://lists.openvehicles.com/mailman/listinfo/ovmsdev" class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev</a><br class=""></div></blockquote></div>
<div class=""> </div></div><div class="">
<br class="webkit-block-placeholder"></div><hr class="">
_______________________________________________<br class="">OvmsDev mailing
list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev<br class=""></div></div></div></div>
<span id="cid:468BF900-DB5D-4295-BFF4-E43F0CAFEE6D"><test.dbc></span><span id="cid:3E0A0A66-B81B-43BD-9D7B-8B9E68EEA83D"><leafPowerTrainBus.dbc></span>_______________________________________________<br class="">OvmsDev mailing list<br class=""><a href="mailto:OvmsDev@lists.openvehicles.com" class="">OvmsDev@lists.openvehicles.com</a><br class="">http://lists.openvehicles.com/mailman/listinfo/ovmsdev<br class=""></div></blockquote></div><br class=""></div></body></html>