Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What programming languages are most commonly used on automobile systems? What type of data is collected while it is running? What platform does it use?

I am also interested in the new hybrid/electric automobiles, what languages and platforms do they use?

Thanks!

share|improve this question
2  
0.o . – mkoryak Jun 25 '09 at 14:30
1  
I think this mi ghtwin the award for the worst question I've ever seen on SO. Thanks! – George Mauer Jun 25 '09 at 14:32
3  
I think this can be turned into a valid question if anyone's ever curious about programming cars aka fast and furious. – yx. Jun 25 '09 at 14:33
1  
And another award for the fastest closing... although it was edited to make more sense, maybe it could be reopened? – Colin Pickard Jun 25 '09 at 14:34
2  
This question deserves to be re-opened since it was re-written properly. – Wadih M. Jun 25 '09 at 14:35
show 3 more comments

7 Answers

Electronics in the automotive industry are usually based on embedded microcontrollers. As such, the programming languages are usually C, C++, and assembly. In some cases, a higher-level language such as ladder-logic is used to describe the actual control logic.

Modern automobiles have several separate computer systems, each designed to control a specific aspect of the vehicle's operation. There is usually one controller for the engine, one for the transmission, one for the dashboard electronics, one for the ABS braking system, traction control, etc.

Each of these control modules has a set of inputs and outputs. The engine controller, for example, reads many sensors including coolant temperature, engine speed, oxygen intake, throttle position, and so on. And, based on these inputs, it makes decisions about fuelling for the engine. In hybrid vehicles and electric-only vehicles, the engine control system is, of course, entirely different. There is still a controller, but instead of just making decisions about fuelling, it can make decisions about when to engage the electric motors vs the gas engine, how much power to apply to each electric motor, etc.

The various control modules are connected together using an in-vehicle network. There are many different ways of implementing this network, but one of the most common is CAN (Controller Area Network). The network allows individual control modules to send and receive information from other modules at high speed while the vehicle is in operation.

update: Here are some links for further reading:

CAN systems from AA1Car.com
The Hybrid Bible from CarBibles.com
Sensors Make Cars Smarter - an article from Design News

update: Here is a recent article on the subject which may be of interest:

This Car Runs On Code - an article from Discovery.com

share|improve this answer
1  
+1 nice comprehensive answer – Colin Pickard Jun 25 '09 at 14:58
Thanks very much. My English is poor, I need more time to understand you answer. If possible,you can give more answers.Thank you very much. – hws Jun 25 '09 at 14:59
@Colin Pickard: Thank you. I upvoted yours for mentioning OBD-II and J1394. I had no idea that firewire was coming into use for automotive. – e.James Jun 25 '09 at 15:03
@hws: I will try to add some links to my answer. Hopefully that will make it easier to understand. – e.James Jun 25 '09 at 15:04
1  
@Colin Pickard: I work on off-highway vehicles, so I sometimes miss the new developments on the purely on-highway side of things :) The latest development I have heard of is mesh networks, where there are several network connections between modules. – e.James Jun 25 '09 at 15:18
show 1 more comment

Use of C is so widespread in the auto industry that an industry body has come up with a custom set of standards for it - Misra C.

Misra C, in a safety critical system, is practically a different language from normal C - no function pointers, no memory allocation, pretty much no use of C-specific language features.

Essentially, it is Ada with a C syntax.

share|improve this answer

The most popular programming language for automotive ECUs (electronic control unit) that implement hard real-time applications in power train or chassis control is by far C. The software is usually implemented on top of automotive-specific operating systems according to OSEK or AUTOSAR.

In devices dedicated to infotainment you might find other languages or even mainstream operating systems.

OBD-II is just a subset of information collected in a typical car because OBD-II is mostly targeting the engine. There are also tons of diagnostic data collected for other applications, e.g. for comfort functions.

CAN is the "classical" popular bus interface but recently standards with more bandwidth (e.g. Flexray) are growing momentum especially for safety-critical software. For some purpose even the classical Ethernet is used.

I'd post some hyperlinks but SO's reputation system does not allow this ...

share|improve this answer

OBD-II is an interface for collecting automobile data.

In terms of the programming languages, I think it is likely to overlap with a lot of other embedded environments; C is probably used, RTOSs like VXWorks, and so on. 1394(firewire) is beginning to be used for networking.

There is an interesting looking website called 'Automotive Design Line'

share|improve this answer
Is it about new energy automobiles? – hws Jun 25 '09 at 14:35
I imagine it would still apply for hybrid vehicles since it used in emissions testing in California for which there is a requirement for a standard interface. For plugin electrics that might not apply, but garages etc are geared up for OBD-II so I wouldn't be surprised if smaller manufacturers especially continue to use it for that reason – Colin Pickard Jun 25 '09 at 14:39
Thanks very much,your answer is very helpful! What about fuel cell vehicles,hydrogen energy and solar electric vehicle car? – hws Jun 25 '09 at 14:49
1  
I don't know; I don't think any of these types are available in the mass market yet; I guess when they are marketed, they may well come with OBD-II, just because it is a reasonably standard interface. – Colin Pickard Jun 25 '09 at 15:03
1  
My professor said these in the United States have been in the pilot phase,I would like to know the platforms they use? – hws Jun 25 '09 at 15:12
show 1 more comment

C and Microcontroller are used most in the Automotive field. You must have embedded system knowledge.

share|improve this answer

The automotive software stack is becoming more complex, it is not just microcontrollers any more. Nowadays there is also an IVI software stack that runs on a fairly powerful processor, i.e. ATOM or ARM v7, etc. So programming languages have changed accordingly, you can use interpreted languages for example.

share|improve this answer

Automotive feature Application coded in MATLAB C , C++ ...

BSP coded in C or C++

AUTOSAR is common platform or architecture used in Automovie industries.

share|improve this answer
What does the first sentence mean? – WEFX Dec 14 '12 at 15:22
Functionality of CAR (Wiper,Light,etc) are coded in MATLAB,C,C++... – Shivang Dec 14 '12 at 18:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.