Translations of this page:

This is an old revision of the document!


Welcome to OOBD

<php> $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']); #echo $hostname; if (preg_match('/ford\.com$/i', $hostname)>0){

 #echo "I'm inside Ford:";
 #echo $hostname;
 }

</php>

What is OOBD?

When you are familiar with Vehicle Diagnostics, you know: You have 100 problems, and for each problem you've your own software, an own dedicated hardware and some dedicated hardware drivers to deal with that particular task.

To get out of this hell of tools, the target of OOBD is to provide an open framework as one single program, which is able to handle all kinds of diagnostic problems by having a flexible plug-in interface for all type of requests, visualizations and hardware.

Several Platforms

On Java-ME: On Android:
On Windows (and Linux & Mac1))

Flexibility

This is realized by not to have hardcoded functionality, but to control the functions by loadable (Lua) scripts.

Building the main menu:

function Start(oldvalue,id)
	identifyOOBDInterface()
	setSendID("$7E8") -- set not UDS compatible sender (=answer) address for OOBD firmware
	openPage("OOBD-ME Main")
	addElement("Sensor Data >", "createCMD01Menu",">>>",0x1, "")
        addElement("Snapshot Data >", "createCMD02Menu",">>>",0x1, "")
        addElement("Dynamic Menu3 >", "createCMD03Menu",">>>",0x1, "")
	addElement("Trouble Codes", "showdtcs","-",0x1, "")
	addElement("VIN Number", "vin","-",0x2, "")
	addElement("Clear Trouble Codes", "clearDTC","-",0x0, "")
	addElement("System Info >>>", "SysInfo_Menu",">>>",0x1, "")
	addElement("Greetings", "greet","",0x1, "")
	pageDone()
	return oldvalue
end

Reading the VIN number:

function vin(oldvalue,id)
	echoWrite("0902\r\n")
	udsLen=receive()
	if udsLen>0 then
		if udsBuffer[1]==73 then
			local pos=4
			local res=""
			while pos <= udsLen and pos < 36 do
				if udsBuffer[pos]>31 then
					res=res..string.char(udsBuffer[pos])
				end
				pos= pos +1
			end
			return res
		else
			return "Error"
		end
	else
		return "NO DATA"
	end
end

OOBD itself stands for Open On Board Diagnostics, where OnBoardDiagnostics stands for the diagnostics connector in each modern car, where OOBD is coming from, but it can also be adapted to all other scenarios, where a request is send by a tester and a system sends an answer back.

Own Hardware

To be able to support the full telegram length of the UDS protocol and to have two CAN busses available, we are using the existing DXM Bluetooth BTM222, modify it and install our own firmware

About us

We are a small group of mainly automotive engineers who wanted to have some simple and handy equipment for our daily work.

Join the OOBD- Community..

If you like the concept of a flexible, configurable diagnostic software so much as we do, you might want to take the advantage of Open Source and take the base to implement your own ideas, wishes and needs - which is, of course, a good idea

But..

As you certainly know, there are hundreds of diagnostic programs around, solving hundreds single problems, each one for its own. We have set up the OOBD project to generate a generic framework to have just one single program instead which can be adapted to every possible topic.

We are now just worried that you probably like this idea of this all-in-one-design, and you start your own all-in-one project - so that in the end we end up with hundred all-in-one concepts…

So please before you start your own thing, have a thought about to join us. We are wide open to every new idea, and as you see, we are also just at the beginning, but we really would like to end up with just one program for everything.


Our Sponsors

We would like to thank our sponsors to support the OOBD idea:

Hellermann Tyton

1)
No installation pack available yet, needs to be compiled manually out of the repository
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies