General Maxima Discussion This a general area for Maxima discussions for all years. For more specific questions, visit one of the generation-specific forums.

Flash Ecu Reprogramming System

Thread Tools
 
Search this Thread
 
Old 02-07-2003, 10:37 AM
  #1  
Senior Member
Thread Starter
iTrader: (5)
 
MAXIN's Avatar
 
Join Date: Jun 2001
Posts: 1,050
Flash Ecu Reprogramming System

[newb]Could this be of any use (in the proper hands ofcourse) to us?

dont flame...I dont know much about this ecu programming stuff...[/newb]

http://www.technosquareinc.com/flashecu.htm

MAXIN is offline  
Old 02-07-2003, 10:46 AM
  #2  
Moderator running more PSI than all the boosted Maximas... combined
iTrader: (5)
 
1MAX2NV's Avatar
 
Join Date: Aug 2000
Posts: 6,345
Re: Flash Ecu Reprogramming System

The product is $$$$ last time somone asked about the price. But even if you have the ability to flash the memory, what data are you going to flash it with? You would need to know how to read machine codes and understand what various codes mean. Way too much of a learning curve unless you are a computer programmer with experience in machine code programming. I'm a programmer but my experiences are in 4th generation programming languages like C, C++, ABAP and VB. I haven't done any practical machine code programming.

Originally posted by MAXIN
[newb]Could this be of any use (in the proper hands ofcourse) to us?

dont flame...I dont know much about this ecu programming stuff...[/newb]

http://www.technosquareinc.com/flashecu.htm

1MAX2NV is offline  
Old 02-07-2003, 11:25 AM
  #3  
Senior Member
Thread Starter
iTrader: (5)
 
MAXIN's Avatar
 
Join Date: Jun 2001
Posts: 1,050
Yea i figured that, I know a few languages too and very little machine level... thats why I said in the proper hands...


Thanx for the info...
MAXIN is offline  
Old 02-07-2003, 12:13 PM
  #4  
Supporting Maxima.org Member
iTrader: (2)
 
99maxi's Avatar
 
Join Date: Nov 2001
Location: NYC
Posts: 654
are we talking about basic like 0's and 1's?? that would be a b1tch..
99maxi is offline  
Old 02-07-2003, 12:38 PM
  #5  
Moderator running more PSI than all the boosted Maximas... combined
iTrader: (5)
 
1MAX2NV's Avatar
 
Join Date: Aug 2000
Posts: 6,345
No..not Binary programming. It's one level higher.

Something like this...

$7D0B LDA A #1 $86 $01
$7D0D .loop INC A $4C
$7D0E CMP A #101 $81 $65

Originally posted by 99maxi
are we talking about basic like 0's and 1's?? that would be a b1tch..
1MAX2NV is offline  
Old 02-07-2003, 12:40 PM
  #6  
Supporting Maxima.org Member
iTrader: (2)
 
99maxi's Avatar
 
Join Date: Nov 2001
Location: NYC
Posts: 654
so it is assembly language... not that hard..
99maxi is offline  
Old 02-07-2003, 01:02 PM
  #7  
Moderator running more PSI than all the boosted Maximas... combined
iTrader: (5)
 
1MAX2NV's Avatar
 
Join Date: Aug 2000
Posts: 6,345
Yeah...it's pretty much assembly langauge. The auto manufactures would protect their codes by throwing in bunch of irrelevant codes. It just makes it even harder to make sense what does what. You would probably have to write you own complier and misc utilities. I think it's hard...but then again my background isn't really CS.

Originally posted by 99maxi
so it is assembly language... not that hard..
1MAX2NV is offline  
Old 02-07-2003, 01:10 PM
  #8  
ejj
Donating Maxima.org Member
iTrader: (5)
 
ejj's Avatar
 
Join Date: Aug 2000
Posts: 4,602
Originally posted by 1MAX2NV
Yeah...it's pretty much assembly langauge. The auto manufactures would protect their codes by throwing in bunch of irrelevant codes. It just makes it even harder to make sense what does what. You would probably have to write you own complier and misc utilities. I think it's hard...but then again my background isn't really CS.

No, it won't be in assembly language. It will give you machine code, which is basically just the 1's and 0's. You'll need to find the proper dis-assembler for the chip used in the ECU, which last I've read nobody has discovered what chip that is.

Dissasembled code is VERY hard to work with. Its not like looking at the assembely source, there are no lables, comments, .data or .text sections, or anything like that. You can't look for a variable called rpm_limit or wot_fuel_map. You'll see nothing but the address that reference that area in memory (ie, the rpm_limit may be stores at 0xA83D, or god knows where).

You'll have to spend days or weeks mapping out the entire memory structure, and tracing each line in the application before you'll even know which areas in memory are for storage, let alone what is stored where.

This is why people charge big bux for ECU upgrades! Its a lot of work! It could be done by any competent Computer Engineer or Computer Scientist..but I don't know who'd have that kind of free time.

That being said, I am a "Computer Scientist" and would love to see a "ROM Dump" from our ECU's.

[EDIT]
Worst of all, not all dis-assemblers will map DATA sections of a rom...just the code part which is useless.
[/EDIT]
ejj is offline  
Old 02-07-2003, 01:12 PM
  #9  
Supporting Maxima.org Member
iTrader: (3)
 
deezo's Avatar
 
Join Date: Apr 2001
Location: FV, NC
Posts: 14,287
An email I got from Danny Lee of TecnoSquare:


Dana,

Our ECU upgrade will not directly work with your 97 Maxima. The upgrade is for 95-96 Maxima. You can get a 95-96 Maxima ECU and have us upgrade it and run it in your 97 Maxima. However, from my understanding, there is a possible chance that the Check Engine Light will come on due to the older (95-96) ECU not recognizing some of the sensors that is on the 97 models. It will not harm or cause any kinda of problems to the engine.

Danny.
It's the same ole song.
deezo is offline  
Old 02-07-2003, 01:25 PM
  #10  
Moderator running more PSI than all the boosted Maximas... combined
iTrader: (5)
 
1MAX2NV's Avatar
 
Join Date: Aug 2000
Posts: 6,345
Well...My background isn't CS so I was talking out of my azz previously anyway

Originally posted by ejj


No, it won't be in assembly language. It will give you machine code, which is basically just the 1's and 0's. You'll need to find the proper dis-assembler for the chip used in the ECU, which last I've read nobody has discovered what chip that is.
1MAX2NV is offline  
Old 02-07-2003, 01:27 PM
  #11  
ejj
Donating Maxima.org Member
iTrader: (5)
 
ejj's Avatar
 
Join Date: Aug 2000
Posts: 4,602
Originally posted by 1MAX2NV
Well...My background isn't CS so I was talking out of my azz previously anyway.
Its a common mis-conception that you can plug a device into a ECU (or other embedded device) and "see" the program that's running.

If I (or any other programmer) could get a copy of the sources that Nissan used we'd all have FREE modified ECU's. If only it were that easy.
ejj is offline  
Old 02-07-2003, 01:53 PM
  #12  
Administrator
iTrader: (10)
 
Sprint's Avatar
 
Join Date: Feb 2001
Posts: 26,949
lets start making some ECU's

Sprint is offline  
Old 02-07-2003, 02:05 PM
  #13  
Senior Member
 
CRMax's Avatar
 
Join Date: Oct 2001
Posts: 431
Originally posted by Sprintmax
lets start making some ECU's
Make sure to include the buffer overflow. I know. It comes standard.
CRMax is offline  
Old 02-07-2003, 04:44 PM
  #14  
Senior Member
Thread Starter
iTrader: (5)
 
MAXIN's Avatar
 
Join Date: Jun 2001
Posts: 1,050
Originally posted by deezo
An email I got from Danny Lee of TecnoSquare:




It's the same ole song.
Aren't the 95 - 96 ODBI? That webpage said this 'system' is for ODBII cars. Then again you are talking about an actual ecu upgrade not this programming system..... right?
MAXIN is offline  
Old 02-07-2003, 04:46 PM
  #15  
Fastest Fantasy Maxima Evar
iTrader: (3)
 
IceY2K1's Avatar
 
Join Date: Jan 2001
Posts: 16,245
Here's a little more info....

Techtom Japan in English

Flash Writer

Now this looks VERY interesting!
Mighty Map&MT2000
IceY2K1 is offline  
Old 02-07-2003, 05:26 PM
  #16  
Senior Member
Thread Starter
iTrader: (5)
 
MAXIN's Avatar
 
Join Date: Jun 2001
Posts: 1,050
Re: Here's a little more info....

Originally posted by IceY2K1

Now this looks VERY interesting!
Mighty Map&MT2000
This info is on the English site. Thats the ? I was asking....
MAXIN is offline  
Old 02-08-2003, 08:06 AM
  #17  
Supporting Maxima.org Member
iTrader: (3)
 
deezo's Avatar
 
Join Date: Apr 2001
Location: FV, NC
Posts: 14,287
Originally posted by MAXIN


Aren't the 95 - 96 ODBI? That webpage said this 'system' is for ODBII cars. Then again you are talking about an actual ecu upgrade not this programming system..... right?
I asked the guy if it worked with the 97 ECU and that was the email I got back.
deezo is offline  
Old 02-08-2003, 10:02 AM
  #18  
Donating Maxima.org Member
iTrader: (3)
 
Mishmosh's Avatar
 
Join Date: May 2001
Posts: 2,654
Originally posted by MAXIN


Aren't the 95 - 96 ODBI? That webpage said this 'system' is for ODBII cars. Then again you are talking about an actual ecu upgrade not this programming system..... right?
Some people have said that all 4th gens are ODBII, including 95-96. However, I think that earlier 95's are ODBI. JWT recently said that the ECU off of my May 1995 SE is NOT upgradeable by them... maybe that is why.
Mishmosh is offline  
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
gigabyte
8th Generation Maxima (2016-)
8
01-06-2017 06:05 PM
MichMaxFan
General Maxima Discussion
10
09-30-2015 09:18 AM
BLACKKILA.GTR
5th Generation Classifieds (2000-2003)
1
09-29-2015 11:23 AM
dshinn
General Maxima Discussion
0
09-26-2015 08:07 PM



Quick Reply: Flash Ecu Reprogramming System



All times are GMT -7. The time now is 03:53 PM.