Author Topic: Arduino/Raspberry-Pi Powered ECU Sheild  (Read 37541 times)

0 Members and 1 Guest are viewing this topic.

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Arduino/Raspberry-Pi Powered ECU Sheild
« on: September 20, 2012, 10:28:51 am »
Im looking for a little assistance... Basically I'm planning a basic ECU shield for the Arduino (or the Pi or similar) that can run a car motor... I do realise there are many after-market ECUs out there (like Megasquirt) but they arent open source or easy to install

Basically what I want to do is pick up the Ignition pulse and the status of various analogue sensors around the car (mostly resistive) and calculate the right injector pulse length... I have a basic circuit design in the planning stage (on Altium) and I will be happy to share it to people if they want to see what I have done, but I am still learning

I will also read the settings off a SD card (or micro-SD) to save the eeprom on the arduino

So.. Is there anyone out there willing to help me a little bit? :)

Feel free to ask me any questions on it
 

Offline Rerouter

  • Super Contributor
  • ***
  • Posts: 4706
  • Country: au
  • Question Everything... Except This Statement
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #1 on: September 20, 2012, 10:57:21 am »
yes most of the sensors around your vehicle will be resistive, but none of them will be linear, most requiring only an y=mx+b correction calculation to re-linearise, but thats up to you to implement, if you do wish to use them in some voltage divider configuration, be aware some have ranges down to 0 ohms, (not all vehichles) with a more common range being 10-180 ohms for temp pressure and fuel, (for vdo instrument vehicles)

equally you will want to run diodes rail to rail on all of those inputs, as long resistively terminated wires running through an engine bay can make rather nice antennas,

for fuel air mixture and a number of the other perfomance sensors, you are on your own there as i dont generally play with them,

and as for the SD card idea, seriously start rethinking it, this will be controlling a few grand of engine, you really will want it to only load in the new values to the eeprom if there is a difference, not on every start, and absolutly, plan out your code and hardware so that the engine stays running, and have any other functions executed seperatly, it is not wise having a status input interupt the timing, equally for arduino i would really, really start thinking about learning the underlaying hardware calls to get the most speed out of your loop,
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #2 on: September 20, 2012, 11:20:47 am »
Thank you Rerouter....

Air/fuel mixture is usually a 0 to 1 volt source (easy to read with the arduino)

Would using a faster micro help? Like the Pi or the Beaglebone (running at about 700MHz instead of the ATmega at about 20MHz)

I still have ALOT of learning to do (I'm giving myself this difficult project so I don't get bored with it), so if you can point me in the right direction it would be most appreciated :)

What do you mean when you say "Diodes rail to rail"? which direction do you mean? I dont know much about filtering (or much at all) But I would like to make this project even if it does fail :)

Yea... A short check routine could run at start-up to check if there are any value differences and change them if necessary so the SD card isn't really needed for running, just to change settings...

How would I work with a sensor if it does go to 0 ohms? because I was just thinking of using a basic voltage divider (with the sensor on the bottom half because they usually go to ground anyway)
 

Offline Rerouter

  • Super Contributor
  • ***
  • Posts: 4706
  • Country: au
  • Question Everything... Except This Statement
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #3 on: September 20, 2012, 11:41:08 am »
i cant help with the micro speed, while i would assume faster would be better, i cannot say for certain as i have not used them,

by rail to rail i mean you have one diode between chassis and signal, for negative spikes, and one between signal and your voltage rail for positive spikes,

as for how it would work for 0 ohms, it would read 0V, just you have to make sure you dont cook your board with your resistor at the top of the board, some more modern designs use a constant current source and measure the voltage that develops across the sensor, just be aware if your connection comes loose you want to have it so your sources cannot fry your adc inputs with too much voltage, while it still dissipates heat, its more easy to implement so that you only have to poll them every once in a while instead of just cooking away 24/7

 

Offline poptones

  • Frequent Contributor
  • **
  • Posts: 709
  • Country: 00
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #4 on: September 20, 2012, 11:48:07 am »
Early FI systems used micros like the 8051 and 6809. I designed one years ago using an 8051, just for kicks I even made one that used nothing but op amps and 555s. That was for an old Gold Wing I bought for like 50 bucks.

It's all in how accurate you want it to be. It's pretty easy to do basic stuff, witness the old Edelbrock TBI system. But if your aim is to replace the computer in your car, that's going to be a lot more involved.

I made a few gadgets for my Mustang back when I was hotrodding that would trick the ecu into doing my bidding. Stuff like disconnecting the hegos so it runs open loop, installing an adjustable fuel pressure regulator, putting pots in parallel with the resistive sensors and making a simple comparator run off the tp sensor to actuate an alcohol injection under WOT. It worked pretty well and it was way easier than trying to duplicate the myriad functions of Ford's EEC system. And this was an 87 model car - trying to replace an ecu in a newer model is going to be even more difficult, now you have transmission strategies and suspension sensors and steering sensors and god knows what else. My 2005 Magnum was completely drive by wire, even the gas pedal and gear shift lever were just electronic parts bolted to the floor with a microcontroller sending signals over the car's can bus.
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #5 on: September 20, 2012, 11:58:29 am »
If you have a schematic for your fully analogue EFI poptones I would Love to see it (I enjoy analouge circuits, I have the circuit schematic of my Marantz amp on my wall just because it looks cool) :)

Its to replace the Lucas/Bosch L-Jet system in Jaguars, So its basically converting the old analogue system into a more programmable digital system

I'm not planning to use CAN-BUS or any other digital transmission as of yet....
 

Offline poptones

  • Frequent Contributor
  • **
  • Posts: 709
  • Country: 00
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #6 on: September 20, 2012, 12:16:55 pm »
Unfortunately I lost everything I owned in a house fire a few years ago. But you really just need to think of it like an analog computer - that's what the old systems were anyway. You just set the base, multiply by air temp, multiply by tp, multiply by coolant temp, multiply by manifold pressure, etc. It's a string of multipliers with each stage's parameters adjusted by a pot. It's not going to be super accurate, but it can work better than carbs.

The old Bosch systems were analog electronic and mechanical. Not too many sensors, but you may have the concern of distributor control.
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #7 on: September 20, 2012, 12:34:21 pm »
The only inputs to the ECU are

Air/Fuel ratio (if the ECU has lambda feedback)
Mass Air Flow (Resistive)
Air Temp (Resistive)
Engine Temp (Resistive)
Ignition Pulse (from the ignition system)
And some switches for cold engine start, Full throttle and No throttle

Im guessing I'll get the most noise from the Ignition pulse so I'll need some pretty decent filter circuits on that input

I also want to add some more complex things into it like manifold pressure sensing and knock sensing and other things, but thats for a later version :)
« Last Edit: September 20, 2012, 12:44:12 pm by agilly1989 »
 

Uncle Vernon

  • Guest
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #8 on: September 20, 2012, 12:48:38 pm »
I do realise there are many after-market ECUs out there (like Megasquirt) but they arent open source or easy to install

What makes you think open source DIY ECU is going to be easier or cheaper? In short it is not!

1. You need to outline what you are trying to do. What I/O do you have? What sensors? Building something reliable that is not going to detonate thousands of dollars worth of mechanical hardware is not trivial.

2. What the hell engine are we talking about? Petrol? diesel? Taxi Pack? Grumpy V8?

3. Are you after performance? Economy? lower emissions?
 
Quote
So.. Is there anyone out there willing to help me a little bit? :)
The best help I can offer is to make it quite clear designing an ECU is not a trivial exercise! There have been thousands of man hours gone into most of the better ones.
While not exactly open source there are plenty of Kit ECUs that allow you to play and learn.

An ECU as a beginner project is about as feasible as DIY earth orbit. Forget the Arduino, if you want to get into electronic engine management Google is your friend, there is plenty of learning out there, but like anything automotive be prepared to open your wallet often.
 

Offline GeoffS

  • Supporter
  • ****
  • Posts: 1272
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #9 on: September 20, 2012, 01:06:49 pm »
The only inputs to the ECU are

Air/Fuel ratio (if the ECU has lambda feedback)
Mass Air Flow (Resistive)
Air Temp (Resistive)
Engine Temp (Resistive)
Ignition Pulse (from the ignition system)
And some switches for cold engine start, Full throttle and No throttle

Im guessing I'll get the most noise from the Ignition pulse so I'll need some pretty decent filter circuits on that input

I also want to add some more complex things into it like manifold pressure sensing and knock sensing and other things, but thats for a later version :)


Some ECU manage a lot more than that!
On my vehicle (mercedes Sprinter) , there's very little that not controlled by the ECU. For example, light switches are inputs to the ECU that then drives the relays for the lights.  A recent thread on another forum about the Sprinter counted 22 different processors that control some part of  vehicle operation. They may be fairly simple  for managing the dashboard or more complex for engine or transmission control.

As Uncle Vernon said, an enormous amount of research and money invested in these things and it shows in the price of replacement parts. Very secretive lot the ECU makers, try getting diagnostic codes from one of them  ;)
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #10 on: September 20, 2012, 01:10:16 pm »
It'll be easier because the prototypes will be designed as a replacement for an existing system.... It'll be just as simple as upgrading the hard-drive in your computer

1. The IO....

Inputs:
Air/Fuel ratio (if the ECU has lambda feedback)
Mass Air Flow (Resistive)
Air Temp (Resistive)
Engine Temp (Resistive)
Ignition Pulse (from the ignition system)
And some switches for cold engine start, Full throttle and No throttle

Outputs:
A PWM output to control the injector pulse

2. Its a 4.2L Straight 6 Jaguar motor which is in a XJ6 Series 3 1980 Automatic Jaguar... It is a petrol engine

3. Hoping to get a little more of each.... If I don't achieve any of them, it was a failed learning experiment

I do realise this is a VERY large task... and I do know know there are A LOT of better ECUs out there and I know there is a lot of learning to do but I have a fair bit of spare time on my hands

So basically if the question is "WHY IN THE HELL ARE YOU DOING IT?" the answer is "Because I love to learn"

If I make an ECU I can learn how Engine management works, Devise efficient code, work with noisy inputs, analogue and digital inputs etc, etc, etc

Any other questions Uncle Vernon?

And to GeoffS: Im just planning on older analogue systems (like pre 1990) not these digital systems at the moment

http://www.jaguarforums.com/forum/jaguar-engines-47/custom-jaguar-l-jetronic-5cu-ecu-70295/

That is my post looking for ideas on a jaguar forum... It states my intentions and ideas... I realise most of them are out of my reach at the moment
« Last Edit: September 20, 2012, 01:18:24 pm by agilly1989 »
 

Uncle Vernon

  • Guest
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #11 on: September 20, 2012, 03:08:09 pm »
It'll be easier because the prototypes will be designed as a replacement for an existing system.... It'll be just as simple as upgrading the hard-drive in your computer
If it's that easy you'll hardly need to ask for assistance,


Quote
3. Hoping to get a little more of each.... If I don't achieve any of them, it was a failed learning experiment
First thing you learn if you want improvement in all areas you generally cant go too far from what the manufacturer supplied. You can get wild horsepower but it wont coincide with economy. You can get better mileage but it likely won't be the powerhouse it could be.

Quote
I do realise this is a VERY large task... and I do know know there are A LOT of better ECUs out there and I know there is a lot of learning to do but I have a fair bit of spare time on my hands
What I believe you are missing is that there is an immense amount of learning to be had without reinventing every bit of the wheel

Quote
So basically if the question is "WHY IN THE HELL ARE YOU DOING IT?" the answer is "Because I love to learn"
No arguments with that. just an old head warning that the learning can be incredibly expensive. I know of people that devoted much of the time and effort during a masters degree developing an ECU.

Quote
If I make an ECU I can learn how Engine management works, Devise efficient code, work with noisy inputs, analogue and digital inputs etc, etc, etc
If you revise your strategy you'll likely learn a lot more. Don't get me wrong, I am not suggesting you close the bonnet/hood and leave well enough alone. What I am suggesting is that you keep the learning and experimentation manageable. There is a hell of a lot of mechanical engineering to master along with any afternoon of micro code.

Quote
Any other questions Uncle Vernon?
plenty! Centring around why you think you need raw code to learn

Quote
And to GeoffS: Im just planning on older analogue systems (like pre 1990) not these digital systems at the moment
Isn't Arduino a digital system?

Quote
That is my post looking for ideas on a jaguar forum... It states my intentions and ideas... I realise most of them are out of my reach at the moment

That is a good start. Talk to others. I believe you are attempting too much for your apparent level of expertise,but only you can decide what is right for you.
 

Offline Zad

  • Super Contributor
  • ***
  • Posts: 1013
  • Country: gb
    • Digital Wizardry, Analogue Alchemy, Software Sorcery
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #12 on: September 20, 2012, 03:45:37 pm »
Im looking for a little assistance... Basically I'm planning a basic ECU shield for the Arduino (or the Pi or similar) that can run a car motor... I do realise there are many after-market ECUs out there (like Megasquirt) but they arent open source or easy to install

Megasquirt is not open source, but that doesn't mean it is totally black-box either. Much of what it does has been derived from car manufacturers and component data sheets. If you want to re-invent the wheel then be prepared for a whole world of pain, but you'd be stupid to ignore what is there already:

http://www.msextra.com/doc/general/ms3v3schems.html

As you can see, most of the sensor conditioning is trivial, and the output drives aren't rocket science (except perhaps the optional current limiting and flyback clamp on the injector drivers).

Personally, I'd use one of the automotive ARM cored chips, Arduino is possible but clunky (and limited in memory) and the Raspberry Pi just doesn't have enough I/O without expanders to make it a practical proposition. Get a spark timing system up and running first, then worry about the fuelling system later.


Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #13 on: September 20, 2012, 11:21:23 pm »
Thank you Zad... That will help me a fair bit

Yes.. A agree that an automotive ARM chip would be better, But I don't have the resources available and knowledge to work with one at the moment

I have been mesing around with arduino for about a year and it might be able to do it... I'm honestly not sure... I have seen people use one of the 8 bit PIC micros but I couldn't find and they wouldn't show me the schematics

I don't really want to mess with the spark timing at the moment because the Jaguars dont have an analogue system for controlling the spark, either in points (like in my jag) or a hall effect sensor in the distributor (like my dads)

Uncle Vernon

I needed some assistance/help/whatever from some experienced electronics engineers because you guys might have tried it before (or even something similar) and might be able to say it was a total flop or not. But since poptones made one for a motorbike using opamps and 555 timers... Why in the hell couldn't I design a simple (compared to modern equivalents) ECU?

To put it basically... To put it basically, its a Pulse width modulated Monostable... It varies the pulse width from the sensors and fires on the ignition pulse (basically).... There has to be another delay on the Ignition so the fuel gets fired at the right time

I really dont need help with the programming its the electronics and design things ill need help with.... Component choice, Filter Design, PCB trace width etc?

Did you look for help when you were designing one of your major projects when you didnt have much experience? I don't have the money NOR the pieces of paper required to do an electrical engineering course unfortunately

Im just sick of making "Hello world" programs on my arduino and I think they can be used for a lot more than temperature logging and display or something else then what they are being used for at the moment so I'm throwing myself into the deep end and seeing if I will drown or not

All I am is a 22 year old guy that is trying to do something useful so if you dont have anything useful to say Uncle Vernon don't say it... Im not planning to make money from this but the older analogue ECUs are slowly disappearing and people want to keep their cars and they dont want to do an extensive re-wire of the harness to upgrade to an after market ECU so that's what I'm trying to do... I haven't been to an electronics class before.. I live in rural Australia and they only taught basic electronics through school and there aren't any sparkys around that are willing to put an apprentice on... So Im basically all self taught

So please dont troll me Vernon I dont want it
 

Offline free_electron

  • Super Contributor
  • ***
  • Posts: 8549
  • Country: us
    • SiliconValleyGarage
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #14 on: September 20, 2012, 11:36:20 pm »
1 ) i would be very weary using shields .... one bad connection in the shield and it all goes to snot... especially in a car that vibrates... those pinheaders are NOT suitable for such applications.
2 ) the arduino is not avery ruggedized system in itself , and definately not automotive grade ...

if you want to stick to arduino : build your own system on 1 board , pay a lot of attention to protection circuitry (load dumps, voltage spikes etc ), and shielding
Professional Electron Wrangler.
Any comments, or points of view expressed, are my own and not endorsed , induced or compensated by my employer(s).
 

Offline poptones

  • Frequent Contributor
  • **
  • Posts: 709
  • Country: 00
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #15 on: September 20, 2012, 11:50:57 pm »
An arduino running compiled code has to be as fast as an old 8051 that ran at 1.5uS average execution time. I would say don't let it discourage you, but I don't think you're going to get anywhere expecting handholding. I'm sure it can be done, I've done it - but there's a good bit of learning to be done. Visit the web sites of the megasquirt and such, remember those were developed in the open so whether they are "open source" or not ther's plenty to learn from. Another good source (for me, twenty years ago) is the intel microcontroller application handbook. Not sure how you'd get one today, but there were all kinds of app notes there about using the capture/compare unit of the 8096 to calculate spark and generate fuel pw, notes on electrical system issues in autos - all sorts of information. Perhaps these can be found now in pdf reprints or even at intel's website.
 

Offline vl400

  • Regular Contributor
  • *
  • Posts: 62
  • Country: au
    • Delcohacking.net
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #16 on: September 21, 2012, 12:12:17 am »
If you have a look on delcohacking.net we are using cheap Holden Commodore ECU/PCMs on all sorts of vehicles. I have written custom firmware for one of the models to add a heap of extra features and be fully programmable on the fly with some added hardware. You can download the definition file (XDF) for TunerPro (a free data logging and bin editor program) and take a look at what you get to play with, its all free but the code is not open source. http://delcohacking.net/forums/viewtopic.php?f=27&t=356

However, a user did release some open source C code to run on the same hardware. The code might give you some ideas of what is involved on that side of things .. http://delcohacking.net/forums/viewtopic.php?f=27&t=476

Developing an entire ECU from scratch is no small task, I also dont think the raspberry pi is the right base for this either. You dont need that much processing power for a simple ECU, until the early 2000s Holden managed to control an engine and transmission using a 68HC11 keeping the major code loop speed at 160Hz or above. An arduino could manage it, but good coding will be needed as memory will be tight. Its also lacking hardware timers to make your job easier. As a first step maybe using a cheap factory ECU with your own code might help get you started  8)
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #17 on: September 21, 2012, 12:19:38 am »
thanks alot vl400 and Im looking into the 8051 series processors at the moment poptones :) Thanks A whole lot guys :)
 

Offline FenderBender

  • Super Contributor
  • ***
  • Posts: 1115
  • Country: us
    • The Solid State Workshop
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #18 on: September 21, 2012, 12:24:09 am »
Yeah there's a whole lot of crap that gets on the "12V" line. There's so much crap on that line that almost cars disable all electronics during startup so you don't get giant kV spikes that send your equipment up in smoke.

It's not very forgiving and it is very unpredictable. That said, you can totally prevent any issues from occuring by using a good combination of protection circuitry. MOVs, PTCs, thermal fuses, gas discharge tubes, whatever.

Just be aware.

Also, as others have said, a "shield" is a pretty bad idea. Automotive needs to be much more reliable than that. Also, Arduino is not instrinsically safe by any means. It has very limited protection circuitry on the AVR. Not well equipped for serious auto use.
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #19 on: September 21, 2012, 12:31:18 am »
yea... I'll need some pretty decent protection on my 12v line... and I realise now that the Arduino may not be the best of choice out there... I'll probably go with some sort of 80xx series chip or some sort of PIC (I heard they process code faster than the Atmel chips)

If I could find the circuit diagram for the existing ECU im going to base it off, I would just reverse engineer it to a point... but there are components on the board that are un-marked or are custom Bosch/Lucas components

Yea, Ill probably go for a single board solution guys, thanks for pointing that out to me
 

Offline poptones

  • Frequent Contributor
  • **
  • Posts: 709
  • Country: 00
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #20 on: September 21, 2012, 12:32:42 am »
An 8051 is a lousy place to start. 1985 was a long, long time ago. I'd sooner start with the atmel.
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #21 on: September 21, 2012, 01:04:12 am »
yea, 1985 is a while ago... even longer in "Processor years" :)
 

Uncle Vernon

  • Guest
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #22 on: September 21, 2012, 01:08:21 am »
I needed some assistance/help/whatever from some experienced electronics engineers because you guys might have tried it before (or even something similar) and might be able to say it was a total flop or not. But since poptones made one for a motorbike using opamps and 555 timers... Why in the hell couldn't I design a simple (compared to modern equivalents) ECU?
I did not say you couldn't! But given you are suggesting a small budget and limited resources, I've suggested you are probably taking on more than you can handle in a single project. I'm not out to prove you wrong, just offering some of that experience you said you were looking for. Go ahead prove me wrong if you feel affronted.

Quote
To put it basically... To put it basically, its a Pulse width modulated Monostable... It varies the pulse width from the sensors and fires on the ignition pulse (basically).... There has to be another delay on the Ignition so the fuel gets fired at the right time
All things automotive are simple when put basically, the reality can be an altogether more complex undertaking.

Quote
Did you look for help when you were designing one of your major projects when you didnt have much experience?
Sure did! And I listened and learnt from some brilliant engineers, mechanics and enthusiasts. Their advice wasn't always what I wanted to hear either, and it was seldom inaccurate even if it did seem discouraging at the time.

Quote
I don't have the money NOR the pieces of paper required to do an electrical engineering course unfortunately
You don't need a piece of paper to achieve results, but if you don't have the money for that how have you budgeted for the costs associated with reinventing the automotive wheel.

Quote
Im just sick of making "Hello world" programs on my arduino and I think they can be used for a lot more than temperature logging and display or something else then what they are being used for at the moment so I'm throwing myself into the deep end and seeing if I will drown or not
Yes time to move on you can only flash so many LEDs before the magic dies. There is still a lot of learning between a by the numbers Arduino project and a ground up ECU design. There are lots of Automotive applications you could put your Arduino/s to, and they would provide a lot of the insight required without rendering your (likely) sole means of transport into a brick.

Quote
All I am is a 22 year old guy that is trying to do something useful so if you dont have anything useful to say Uncle Vernon don't say it...
Exhibiting a lot of 22 yo attitude too! You asked for advice, I offered it! If you want to do all your learning the hard way, go ahead, no skin off my nose. If you only accept the advice you want to hear you on a hiding to nothing in the automotive world.

Quote
Im not planning to make money from this
Good! You Wont.

Quote
but the older analogue ECUs are slowly disappearing and people want to keep their cars and they dont want to do an extensive re-wire of the harness to upgrade to an after market ECU so that's what I'm trying to do.
I hear what you are saying there,but I don't understand how any home brew is going to involve any less wiring changes. If you just trying to build a replacement for a superseded part, that is not what you have asked for above.
Elsewhere in this thread is some excellent advice about adapting a more readily available factory ECU for other applications, you'd learn just as much by adopting this kind of solution and you'd be for more likely to be able to afford it.

Quote
.. I haven't been to an electronics class before.. I live in rural Australia and they only taught basic electronics through school and there aren't any sparkys around that are willing to put an apprentice on... So Im basically all self taught
Some of the best mechanics I know and have met have never set foot in a classroom in their life.  Nothing wrong with self taught, just understand it can be an uphill battle.

Quote
So please dont troll me Vernon I dont want it
You asked for advice, I gave it! If you're too stupid to take it on board then don't ask! No one is trying to hose down your enthusiasm, the advice offered is an attempt to steer you towards a project you are likely to complete.  Ignore my advice, prove me wrong, it will always will be your choice.
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #23 on: September 21, 2012, 01:12:27 am »
Im sorry Vernon... I misunderstood you... I will take your advice seriously now :) thank you
 

Offline agilly1989Topic starter

  • Contributor
  • Posts: 36
  • Country: au
Re: Arduino/Raspberry-Pi Powered ECU Sheild
« Reply #24 on: September 21, 2012, 07:05:23 am »
I have decided to just make an ALDL (or OBDII) "Upgrade" thing for the ECU to start off with... I wont be controlling anything, Just intercepting the signals and converting them to ALDL compatable data so they can be read by a computer... Once I have that information I can figure out how im going to output signals to control the Injectors
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf