Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

Need help on Immo OFF for Land Rover td5
24-10-2013, 12:02 PM,
Post: #1
ILandRover  Need help on Immo OFF for Land Rover td5
I need help for Immo Off on NNN ECU for TD5. The eeprom is 93C66.
I have for older MSB ECU with 93c46.
I have written an AVR emulator that emulates AS10 alarm, but I sometimes have trouble with it.

rgds,
Haavard
Norway


Attached Files
nnnhjereoriginale2prom93c66.zip
File Type: .zip
Downloaded: 37 times
Size: 297 bytes

Quote this message in a reply
[+] 2 users say Thank You to zeb crusaders for this post
24-10-2013, 22:43 PM,
Post: #2
RE: Need help on Immo OFF for Land Rover td5
I used to have exactly the same problem. From what I know there is no way to immo off in this driver but can be disabled in the driver
lucas 10AS is not only stable solution, do not use the remote control and can be disabled by disconnecting the battery. This can be done Autologic diagnostic tool. My car runs from the so off.


SlaweK
Quote this message in a reply
25-10-2013, 09:04 AM,
Post: #3
RE: Need help on Immo OFF for Land Rover td5
I have the TD5 engine in a Range Rover classic and do not have the AS10 installed.
I know it is possible to do immo off with just some eeprom changes. I have done it several times on the MSB series and I have seen the solution for NNN series ECu too.

This is the stuff I use now. It works 99% of the time. If it starts and works for a second there is a time litmit to start again on about 15 seconds. You can hear the main relay drop and then You are ready to start again.

Build this circuit around an AVR, almost any will work and do a sequrity code learn with any diagnostic tool and You are good to go.
This code snippet on an AVR does the immo emulation.
Just need a transistor output with a pullup to + 12volt to generate the "bus" signal.

// #include <avr/interrupt.h>
#define F_CPU 1000000UL

#include <avr/io.h>
#include <util/delay.h>
#include <stdlib.h>



static void sec_send_byte(char b) {
PORTA = (b & 0x01) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x02) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x04) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x08) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x10) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x20) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x40) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x80) ? 0xFF : 0x00; _delay_ms(4);
}

static void sec_send_half_byte(char b) {
PORTA = (b & 0x01) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x02) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x04) ? 0xFF : 0x00; _delay_ms(4);
PORTA = (b & 0x08) ? 0xFF : 0x00; _delay_ms(4);
}

void alarm_heartbeat() {
char code[5] = {0b11001110, 0b10110010, 0b01010100, 0b01010101, 0b00001101};
while(1) {
sec_send_byte(code[0]);
sec_send_byte(code[1]);
sec_send_byte(code[2]);
sec_send_byte(code[3]);
sec_send_half_byte(code[4]);

_delay_us(100);
}
}

int main(void) {
DDRA = 0xff;
PORTA = 0xff;

alarm_heartbeat();
}
Quote this message in a reply
[+] 2 users say Thank You to zeb crusaders for this post
26-10-2013, 23:36 PM,
Post: #4
RE: Need help on Immo OFF for Land Rover td5
Hi
Yes, i can do in 93C66.
Br.
Visit this user's website
Quote this message in a reply
31-10-2013, 08:51 AM,
Post: #5
RE: Need help on Immo OFF for Land Rover td5
That sounds good Gezame !
Quote this message in a reply
13-04-2016, 21:53 PM,
Post: #6
RE: Need help on Immo OFF for Land Rover td5
I really want to program this to an avr chip but it says there's an error in line 13, I've selected atiny2313 in avr studio. I have a defender and want to make my own security system as a lot of them go missing in my neck of the woods
Quote this message in a reply
25-04-2023, 07:45 AM,
Post: #7
RE: Need help on Immo OFF for Land Rover td5
(13-04-2016, 21:53 PM)chiper1 Wrote:  I really want to program this to an avr chip but it says there's an error in line 13, I've selected atiny2313 in avr studio. I have a defender and want to make my own security system as a lot of them go missing in my neck of the woods



this is related with  5-as
Quote this message in a reply


Possibly Related Threads…
Thread Author Replies Views Last Post
JLancia Lancia Phedra SID803A immo off dmxpowa 0 8 38 minutes ago
Last Post: dmxpowa
  Immo off VW GOLF IV 1.6 16v dankocg 1 17 1 hour ago
Last Post: darek_naprawa
  Golf 3 immo off passador83 2 30 2 hours ago
Last Post: ROD-BENDERS
  Solved ✔ Golf VI immo data svukov21 2 60 2 hours ago
Last Post: svukov21
  PCR2.1 IMMO OFF magdex 2 64 3 hours ago
Last Post: magdex
ZVW immo off MED17.5.5 tomekpppp 3 28 Yesterday, 22:56 PM
Last Post: casued
PPeugeot immo off iaw48p.11 doot47 2 479 Yesterday, 22:42 PM
Last Post: casued
  Solved ✔ Peugeot 407 SID 803 Immo off NikolaIMRS 2 61 Yesterday, 17:41 PM
Last Post: NikolaIMRS
PCitroen Solved ✔ Citroen Berlingo Edc17C10 immo off pls Dinho 2 65 Yesterday, 14:57 PM
Last Post: Dinho
  VAG IMMO OFF TOOL for free josef1708 10 2,173 Yesterday, 09:55 AM
Last Post: josef1708

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content