Jump to content

ZF8 8-Speed Transmission


biddie_fiddler
 Share

Recommended Posts

  • 7 months later...
  • Member
  • Member For: 5y 10m 29d
  • Gender: Male
  • Location: Brisbane

I am putting this on hold for a while as Dominator Australia are bringing out a hardware and software conversion in the future, I don't know when but its still happening. The software will be the big bonus as its a large outlay for the HTU gear which isn't a plug n play

Link to comment
Share on other sites

  • Member
  • Member For: 5y 10m 29d
  • Gender: Male
  • Location: Brisbane
  • Puff
  • Gold Donating Members
  • Member For: 8y 2m
  • Gender: Male
  • Location: South Australia

Not too bad when you consider what a built zf 6 speed goes for. I wonder if the territory transfer case fits on the back? The BMW transfer case has the output shafts in the right locations however and seems to have an electronic lock incorporated.

Link to comment
Share on other sites

  • 8 months later...
  • [IMPULSIV3]
  • Bronze Donating Members
  • Member For: 4y 1d
  • Gender: Male
  • Location: Perth, WA

 Edit: I pressed post too early bit mistake! 

 

 

Looks like there is pathway using a bunch of after sh*t to get a zf 8hp into a falcon now. Listed below is everything you'd need to get it to work and look completely factory. Plus a new dash because I don't see an easy way of telling the factory dash what gear you're in over 6th gear. I'll explain more below.

 

  • Adapter plate linked above
  • HTG tuning GCU (gearbox control unit)
  • Haltech PnP ECU, required to talk to the GCU
  • Haltech Dash
  • Mako dash insert - make it look like factory
  • Custom trans mount, probably
  • Some sort of custom tailshaft, probably
  • The transmission itself

 

 

Start pricing all that and it gets real expensive. Not worth it tbh but at least there is a pathway! I wish I had the money to do this just because.

 

 

As for the dash. The way LCD coding works, the microcontroller has something called a "lookup table". Basically, when you want to display a "1", it goes to this table so it knows what pixel pattern is required to display said "1". Now, we know the dash can display "P, R, D, 1, 2....6". These will all be in a lookup table. Unfortunately, there is now way of knowing if they've implemented an entire lookup table (ASCII for basic numbers and letters) or whether they were memory constrained and only implemented what they needed.

IF the code supports all ASCII inputs, it means that you can display numbers 7 & 8, no dash required. I have worked with an LCD before on a work project, and the code to look in to the table isn't character dependant. Hoping it'll be the same for the dash. Here is what a font table looks like, this one is 5x7 pixels. It would be pretty cool if this just worked when you tell the dash its in 8th gear 

 

// standard ascii 5x7 font
// defines ascii characters 0x20-0x7F (32-127)

static const char font5x7[] = {
	0x00, 0x00, 0x00, 0x00, 0x00,// (space)
	0x00, 0x00, 0x5F, 0x00, 0x00,// !
	0x00, 0x07, 0x00, 0x07, 0x00,// "
	0x14, 0x7F, 0x14, 0x7F, 0x14,// #
	0x24, 0x2A, 0x7F, 0x2A, 0x12,// $
	0x23, 0x13, 0x08, 0x64, 0x62,// %
	0x36, 0x49, 0x55, 0x22, 0x50,// &
	0x00, 0x05, 0x03, 0x00, 0x00,// '
	0x00, 0x1C, 0x22, 0x41, 0x00,// (
	0x00, 0x41, 0x22, 0x1C, 0x00,// )
	0x08, 0x2A, 0x1C, 0x2A, 0x08,// *
	0x08, 0x08, 0x3E, 0x08, 0x08,// +
	0x00, 0x50, 0x30, 0x00, 0x00,// ,
	0x08, 0x08, 0x08, 0x08, 0x08,// -
	0x00, 0x60, 0x60, 0x00, 0x00,// .
	0x20, 0x10, 0x08, 0x04, 0x02,// /
	0x3E, 0x51, 0x49, 0x45, 0x3E,// 0
	0x00, 0x42, 0x7F, 0x40, 0x00,// 1
	0x42, 0x61, 0x51, 0x49, 0x46,// 2
	0x21, 0x41, 0x45, 0x4B, 0x31,// 3
	0x18, 0x14, 0x12, 0x7F, 0x10,// 4
	0x27, 0x45, 0x45, 0x45, 0x39,// 5
  };

 

Link to comment
Share on other sites

  • Puff
  • Gold Donating Members
  • Member For: 8y 2m
  • Gender: Male
  • Location: South Australia

Looks like you don't need a Haltech to run it. Still could be a worthwhile thing for those wanting a stronger trans instead of forking out 10k for a built 6 speed.

 

ECU integration. How can GCU get data ?

GCU is capable of reading any data required to run the setup from CAN bus or analog inputs. This means, that if you have a PPS, MAP sensor, Engine RPM on CAN bus, you can read them, and use them in GCU tune, or just connect analog signals directly.

Also there are options to use different user input devices starting from OEM CAN bus selectors, analog selectors, paddle and sequential shifters finishing on analog mode knob or other generic sensors.

Link to comment
Share on other sites

  • [IMPULSIV3]
  • Bronze Donating Members
  • Member For: 4y 1d
  • Gender: Male
  • Location: Perth, WA

Oh yea, I forgot to mention that it can be set up to mimic a haltech IO expander hence why I mentioned using the haltech. It also comes back to the factory cluster integration. If the cluster can't display gear 7 and 8, its kinda pointless. At lease that's my opinion. I'm a fan of keeping everything neat and looking factory. Sticking an external gear indication display somewhere is not factory 😂

Link to comment
Share on other sites

  • Puff
  • Gold Donating Members
  • Member For: 8y 2m
  • Gender: Male
  • Location: South Australia

Each to his own, my priorities lie with function, I cgf about a minor cosmetic issue :)

 

Also how are you willing to remove the factory dash for a haltech screen yet not willing to have a gear indicator? Ain't nothing factory about an aftermarket dash lol

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
  • Create New...
'