[Ovmsdev] General suggestions for adding support for a new vehicle to OVMS

Chris van der Meijden chris at arachnon.de
Wed Feb 19 16:07:57 HKT 2020


Hi Mark
Your post is a great help for all the newcomers. I went through all the
steps with my integration of the VW e-UP by myself (and a few mails
from Michael :-)). Quite a journey ...
I would like to make two other suggestions.
First, it would be of great help, if a demo code would exist for just
getting the SOC. I started with the Fiat 500 e template and edited the
values for the vehicle registration and CAN bus registration (the e-Up
is on CAN3). Now I'm reading the code of many different vehicles to get
the right entry point for getting the first values right. That code is
full of, certainly usefull, other features, but that makes it difficult
for me to understand the simple basics of getting just one value from
the CAN bus and get that value to the server and displayed in the app.
So a simple "Get SOC template" would be very usefull.
Secondly, the app. The new vehicle also wants to be added to the app.
This is not very difficult, you just need to add the images to
res/drawable-nodpi and add the vehicle
to ui/settings/CarEditorFragment.java A little, comprehensive howto on
how to do this exactly would be great too.
Regards
Chris


Am Mittwoch, den 19.02.2020, 09:05 +0800 schrieb Mark Webb-Johnson:
> I created this forum post, which some may find helpful. Please feel
> free to add comments to it (at the link below) to feedback your
> experience and suggestions.
> 
> General suggestions for adding support for a new vehicle to OVMS
> 
> Before we start, I would like to say thank you. Your time is valuable
> and your contributions are appreciated. OVMS is an open source
> community project, and we rely on our developers to take this project
> forward. New vehicle support comes from the owners of those vehicles
> developing that support, along with the help of other experienced
> developers working on other vehicles or framework components. We work
> together to extend the project.
> 
> The first step is to sign up for the developer's mailing list, and
> let people here know that you are working on a particular car.
> Perhaps other owners are also interested and can help.
> 
> Next is physical hardware reconnaissance. You need to find out what
> sort of communications buses your car has, what vehicle modules
> (ECUs) are connected, what speed the buses run at, where the
> diagnostic connectors are, and what each pin does. The OBDII
> connector is pretty standard in modern cars, but is often not the
> only connector. It is often common to see many different types of
> communication buses such as CAN, LIN, K-Line, and others. Of
> particular interest is any communication buses connecting the car to
> its user visible displays or telematics modules. Google is your
> friend here. You can also look for service manuals, or talk to your
> friendly mechanic. The absolute last resort is to get out a
> multimeter, trace cables and measure signals. For OVMS, you are in
> particular looking for CAN bus networks.
> 
> The next step is to look for documented signals on those
> communications buses. Network traffic is commonly either polled (the
> diagnostic tool sends a request for a particular piece of
> information, and the vehicle module replies with the current value),
> or active (the information is broadcast repeatedly, usually at a set
> interval). Most cars use a combination of both. Sometimes these are
> published as online resources on enthusiast websites, and other times
> the manufacturer or diagnostic tool supplier has the information.
> There are standardised formats for this (such as DBC for active
> networks, and PIDs for polled).
> 
> You then need to look for existing diagnostic screens and
> information. As well as the general user interface of the car
> (temperature displays, speedometer, etc), there may also be
> maintenance screens and lower level diagnostics. These are incredibly
> useful for the work you will be doing.
> 
> OK, now it is time to step away from the Internet and go to the
> actual car. You are going to want to record the traffic on the car
> communication buses, while doing different activities (such as
> charging the car, parked idle, driving, reversing, turning, etc). We
> call these "CAN bus dumps". Write down notes next to each dump,
> describing what you were doing, where, when, and what the key metrics
> shown in the car were (state of charge, odometer, speed, type of
> charge, charge rate, etc). The tools I use for this are OVMS (with an
> appropriate cable to connect it to the car networks) and SavvyCAN (a
> cross platform application you can run on a laptop) - you can connect
> the two over WiFi. It is a good idea to have the car reachable by
> wifi, which allows you to do a lot of work from inside your house
> (rather than in the driver's seat with the laptop propped up on the
> steering wheel).
> 
> Now is the time to look for specific metrics. You can find the full
> list in the OVMS documentation, but we suggest you start with basic
> things like car on/off state, gear selection, speed, State of Charge
> (SOC), range displays, etc. I always go for SOC as my first target,
> as it gives instant gratification. At this stage, you will be looking
> for a particular metric, and you are going to be comparing what
> signals are on the car's communication buses against what is
> displayed on the car's diagnostic display. This may not be a 1-to-1
> relationship. For example, the odometer may display to the nearest
> kilometre, but the metric on the car communication bus may be in
> 1/10ths of a mile. Other metrics are in floating point, or different
> byte orders. Often the change in a metric is the biggest clue - a SOC
> would increase during a charge and decrease during a drive, for
> example. SavvyCAN can help with this. When a door opens, you would
> expect the appropriate signal on the CAN bus to change appropriately.
> 
> Once you've found a few metrics, it is time to add support. You will
> need some programming knowledge here, and be very familiar with
> computers. We use the C++ language, which is like C on steroids -
> vehicle modules are not complex and there are plenty of example
> vehicles to learn from. Setup your build environment (the developer's
> guide has the detail for this), clone the OVMS firmware to your own
> GitHub account, and try to build the standard firmware and flash it
> to your module. Then, add a stub for your vehicle. Just a piece of
> code that allows you to select the vehicle but does nothing (you will
> create components/vehicle_ and modify main/Kconfig to add it as an
> optional vehicle). Modify your vehicle module to initialise the
> appropriate CAN bus support, and decode the metrics you know. Flash
> it to your module, then fire up the App and get the instant
> gratification of being able to see your battery level (for example).
> You won't have every metric supported at this time - just get a few
> working and you'll be encouraged to find more.
> 
> Now it is time to contribute. Add, commit, and publish your changes
> to your own GitHub repository, then use the GitHub tools to send in a
> pull request (for us to merge your code back). Please don't forget to
> add some documentation, so others can share in what you have
> achieved.
> 
> From that point on, it is an iterative journey. Discovering and
> adding more metrics, and then starting to look for things like door
> lock/unlock functionality, etc. I find this a fascinating journey -
> the process of discovery is to me even more rewarding than the final
> vehicle support.
> Again, thank you for your contributions, and happy hacking!
> Mark.
> _______________________________________________
> OvmsDev mailing list
> OvmsDev at lists.openvehicles.com
> http://lists.openvehicles.com/mailman/listinfo/ovmsdev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openvehicles.com/pipermail/ovmsdev/attachments/20200219/519bdb18/attachment.html>


More information about the OvmsDev mailing list