2009 jetta wont crank

BigTurboAlh

Veteran Member
Joined
Jan 8, 2016
Location
Pa
TDI
06 ranger cjaa swap
checked all fuses are good. just put a new starter on. if i put power to solenoid car starts and runs. i tore into the dash and found the terminal 53 relay, jumped it and it starts. with the relay out i push the clutch in turn the key to crank it clicks but as soon as you put that relay back in and it does nothing. i swapped a known working cecm still nothing. glow plug light is flashing also. im stumped. vcds log is really long wont let me upload it.

Chassis Type: 1K (1K0)
Scan: 01 02 03 08 09 0F 15 16 17 19 1C 25 42 44 46 52 56 62 65 72


VIN: 3VWAL71K09M029963 Mileage: 349740km-217318miles

01-Engine -- Status: Malfunction 1010
02-Auto Trans -- Status: Cannot be reached 1100
03-ABS Brakes -- Status: Malfunction 1010
04-Steering Angle -- Status: Sporadic communication error 1000
08-Auto HVAC -- Status: Malfunction 0010
09-Cent. Elect. -- Status: Malfunction 0010
0F-Digital Radio -- Status: Malfunction 0010
15-Airbags -- Status: Malfunction 1010
16-Steering wheel -- Status: Malfunction 0010
17-Instruments -- Status: Malfunction 0010
19-CAN Gateway -- Status: Malfunction 0010
1C-Position Sensing -- Status: Malfunction 0010
25-Immobilizer -- Status: OK 0000
42-Door Elect, Driver -- Status: Malfunction 0010
44-Steering Assist -- Status: Malfunction 1010
46-Central Conv. -- Status: Malfunction 0010
52-Door Elect, Pass. -- Status: Malfunction 0010
56-Radio -- Status: Malfunction 1010
62-Door, Rear Left -- Status: OK 0000
65-Tire Pressure -- Status: Malfunction 0010
72-Door, Rear Right -- Status: OK 0000
 

BigTurboAlh

Veteran Member
Joined
Jan 8, 2016
Location
Pa
TDI
06 ranger cjaa swap
Update unplugged can bus gate way module it cranks with the key. next I unplugged ecu it cranks. It has something to do with the can system.
 

TurboABA

Top Post Dawg
Joined
Jul 24, 2010
Location
Kitchener, ON
TDI
RIP-2010 Jetta 6spd 2014 Touareg Execline
vcds log is really long wont let me upload it.
Try using "code" instead of "quote" and you should have up to 30k character limit.

Useless example below

Code:
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
        System.out.println(s);
    }
    
    public static boolean[][] gen(){
        boolean[][] grid = new boolean[10][10];
        for(int r = 0; r < 10; r++)
            for(int c = 0; c < 10; c++)
                if( Math.random() > 0.7 )
                    grid[r][c] = true;
        return grid;
    }
    
    public static void main(String[] args){
        boolean[][] world = gen();
        show(world);
        System.out.println();
        world = nextGen(world);
        show(world);
        Scanner s = new Scanner(System.in);
        while(s.nextLine().length() == 0){
            System.out.println();
            world = nextGen(world);
            show(world);
            
        }
    }
    
    public static boolean[][] nextGen(boolean[][] world){
        boolean[][] newWorld 
            = new boolean[world.length][world[0].length];
        int num;
        for(int r = 0; r < world.length; r++){
            for(int c = 0; c < world[0].length; c++){
                num = numNeighbors(world, r, c);
                if( occupiedNext(num, world[r][c]) )
                    newWorld[r][c] = true;
            }
        }
        return newWorld;
    }
    
    public static boolean occupiedNext(int numNeighbors, boolean occupied){
        if( occupied && (numNeighbors == 2 || numNeighbors == 3))
            return true;
        else if (!occupied && numNeighbors == 3)
            return true;
        else
            return false;
    }

    private static int numNeighbors(boolean[][] world, int row, int col) {
        int num = world[row][col] ? -1 : 0;
        for(int r = row - 1; r <= row + 1; r++)
            for(int c = col - 1; c <= col + 1; c++)
                if( inbounds(world, r, c) && world[r][c] )
                    num++;

        return num;
    }

    private static boolean inbounds(boolean[][] world, int r, int c) {
        return r >= 0 && r < world.length && c >= 0 &&
        c < world[0].length;
    }
import java.util.Scanner;

public class Life {
    public static void show(boolean[][] grid){
        String s = "";
        for(boolean[] row : grid){
            for(boolean val : row)
                if(val)
                    s += "*";
                else
                    s += ".";
            s += "\n";
        }
 

BigTurboAlh

Veteran Member
Joined
Jan 8, 2016
Location
Pa
TDI
06 ranger cjaa swap
Code:
Saturday,03,April,2021,17:19:37:00006
VCDS -- Windows Based VAG/VAS Emulator Running on Windows 7 x64
VCDS Version: 18.2.0.3
Data version: 20180212 DS287.0
www.Ross-Tech.com


VIN: 3VWAL71K09M029963   License Plate:
Mileage: 349740km-217318mi   Repair Order:



--------------------------------------------------------------------------------
--------------------------------------------------------------------------------


Chassis Type: 1K (1K0)
Scan: 01 02 03 08 09 0F 15 16 17 19 1C 25 42 44 46 52 56 62 65 72
        

VIN: 3VWAL71K09M029963   Mileage: 349740km-217318miles

01-Engine -- Status: Malfunction 1010
02-Auto Trans -- Status: Cannot be reached 1100
03-ABS Brakes -- Status: Malfunction 1010
04-Steering Angle -- Status: Sporadic communication error 1000
08-Auto HVAC -- Status: Malfunction 0010
09-Cent. Elect. -- Status: Malfunction 0010
0F-Digital Radio -- Status: Malfunction 0010
15-Airbags -- Status: Malfunction 1010
16-Steering wheel -- Status: Malfunction 0010
17-Instruments -- Status: Malfunction 0010
19-CAN Gateway -- Status: Malfunction 0010
1C-Position Sensing -- Status: Malfunction 0010
25-Immobilizer -- Status: OK 0000
42-Door Elect, Driver -- Status: Malfunction 0010
44-Steering Assist -- Status: Malfunction 1010
46-Central Conv. -- Status: Malfunction 0010
52-Door Elect, Pass. -- Status: Malfunction 0010
56-Radio -- Status: Malfunction 1010
62-Door, Rear Left -- Status: OK 0000
65-Tire Pressure -- Status: Malfunction 0010
72-Door, Rear Right -- Status: OK 0000
 
-------------------------------------------------------------------------------
Address 01: Engine (CBE)       Labels: 03L-906-022-CBE.clb
   Part No SW: 03L 997 016 P    HW: 03L 906 022 J
   Component: R4 2,0L EDC G000AG  8681 
   Revision: --H01---    Serial number: VWX7Z0H7243057
   Coding: 0050078
   Shop #: WSC 00066 000 00000
   VCID: 3F8DF5FE6E7DBABC21-806A

8 Faults Found:
000568 - Manifold Pressure / Boost Sensor (G31)
               P0238 - 000 - Signal too High - MIL ON
             Freeze Frame:
                    Fault Status: 11100000
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 255
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 18:32:33

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 12.54 V
                    Absolute Pres.: 979.2 mbar
                    Absolute Pres.: 2193.0 mbar
                    Temperature: 16.2°C
                    Temperature: 25.2°C

008450 - Throttle Valve Actuator Module (J338): Motor Circuit
               P2102 - 000 - Signal Low - MIL ON
             Freeze Frame:
                    Fault Status: 11100000
                    Fault Priority: 2
                    Fault Frequency: 2
                    Reset counter: 255
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 18:32:33

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Load: 0.0 %
                    Load: 100.0 %
                    Lambda: 99.4 %
                    Mass Air / Rev.: 0.0 mg/str
                    Temperature: 18.0°C

008852 - Fuel Pressure Regulator Valve (N276)
               P2294 - 000 - Open Circuit - Intermittent
             Freeze Frame:
                    Fault Status: 00100000
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 255
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 11.10 V
                    Pressure: 408.0 bar
                    Inj. Quantity: 0.0 mg/str
                    Lambda: 0.0 %
                    Lambda: 14.2 %

009572 - Turbocharger Boost Control Position Sensor Circuit
               P2564 - 000 - Signal too Low - Intermittent
             Freeze Frame:
                    Fault Status: 00100000
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 255
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 11.02 V
                    Temperature: 54.0°C
                    Lambda: 0.8 %
                    Bin. Bits: 00000000
                    Voltage: 0.000 V

009258 - Exhaust Gas Temperature Sensor; B1 S3
               P242A - 000 - Malfunction - MIL ON
             Freeze Frame:
                    Fault Status: 11100000
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 255
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 12.31 V
                    Temperature: 20.7°C
                    Temperature: 96.0°C
                    Temperature: 930.0°C
                    Temperature: 930.0°C

009326 - Exhaust Gas Temperature Sensor 4 Bank 1
               P246E - 000 - Electrical Malfunction - MIL ON
             Freeze Frame:
                    Fault Status: 11100000
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 255
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 12.31 V
                    Temperature: 20.7°C
                    Temperature: 96.0°C
                    Temperature: 930.0°C
                    Temperature: 930.0°C

008449 - Throttle Valve Actuator Control System
               P2101 - 000 - Malfunction - MIL ON
             Freeze Frame:
                    Fault Status: 11100000
                    Fault Priority: 2
                    Fault Frequency: 2
                    Reset counter: 255
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 12.16 V
                    Lambda: 99.4 %
                    Bin. Bits: 00000000

000257 - Mass Air Flow Sensor (G70)
               P0101 - 000 - Implausible Signal - Intermittent
             Freeze Frame:
                    Fault Status: 00100000
                    Fault Priority: 2
                    Fault Frequency: 3
                    Reset counter: 255
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 22:50:32

             Freeze Frame:
                    RPM: 0 /min
                    Speed: 0.0 km/h
                    Voltage: 12.01 V
                    Load: 100.0 %
                    Load: 100.0 %
                    Mass Air / Rev.: 1100.0 mg/str
                    Mass Air / Rev.: 0.0 mg/str

Readiness: 1 2 0 0 1

-------------------------------------------------------------------------------
Address 02: Auto Trans
Cannot be reached

-------------------------------------------------------------------------------
Address 03: ABS Brakes (-----)       Labels:. 1K0-907-379-60EC1F.clb
   Part No SW: 1K0 907 379 AP    HW: 1K0 907 379 AP
   Component: ESP MK60EC1   H45 0107 
   Revision: 00H45001   
   Coding: 113B400D49240003881402EA921C0042B100
   Shop #: WSC 09117 444 57539
   VCID: 000F36029303054418-8054

8 Faults Found:
01314 - Engine Control Module
            004 - No Signal/Communication - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 14
                    Count: 256
                    Count: 8194
                    Count: 47616
                    Count: 65280
                    Count: 0
                    Count: 0

01314 - Engine Control Module
            013 - Check DTC Memory - Intermittent
             Freeze Frame:
                    Fault Status: 00101101
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 14
                    Count: 4096
                    Count: 8193
                    Count: 52736
                    Count: 65280
                    Count: 0
                    Count: 0

01309 - Power Steering Control Module (J500)
            004 - No Signal/Communication - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 3
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 14
                    Count: 256
                    Count: 8213
                    Count: 46592
                    Count: 65280
                    Count: 0
                    Count: 0

01317 - Control Module in Instrument Cluster (J285)
            004 - No Signal/Communication - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 3
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 14
                    Count: 256
                    Count: 8208
                    Count: 47616
                    Count: 65280
                    Count: 0
                    Count: 0

01299 - Diagnostic Interface for Data Bus (J533)
            004 - No Signal/Communication - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 12
                    Count: 256
                    Count: 8233
                    Count: 48128
                    Count: 65280
                    Count: 0
                    Count: 0

00474 - Control Module for Immobilizer
            004 - No Signal/Communication - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 0
                    Mileage: 524546 km
                    Time Indication: 0
                    Date: 2001.12.02
                    Time: 00:20:03

             Freeze Frame:
                    Count: 1536
                    Count: 180
                    Count: 10496
                    Count: 8211
                    Count: 288
                    Count: 769
                    Count: 163
                    Count: 10497

00778 - Steering Angle Sensor (G85)
            004 - No Signal/Communication
             Freeze Frame:
                    Fault Status: 01100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 14
                    Count: 256
                    Count: 166
                    Count: 47360
                    Count: 65280
                    Count: 0
                    Count: 0

01315 - Transmission Control Module
            004 - No Signal/Communication
             Freeze Frame:
                    Fault Status: 01100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                    Count: 2
                    Count: 14
                    Count: 4096
                    Count: 8195
                    Count: 43520
                    Count: 0
                    Count: 0
                    Count: 0


-------------------------------------------------------------------------------
Address 08: Auto HVAC        Labels: 1K0-820-047.lbl
   Part No SW: 1K0 820 047 HS    HW: 1K0 820 047 HS
   Component: Climatic PQ35   142 1111 
   Revision: 00142031    Serial number: 00000000000000
   Shop #: WSC 00000 000 00000
   VCID: 7CF742F23FEB61A444-8028

4 Faults Found:
00457 - Control Module for Network (J519)
            013 - Check DTC Memory
00819 - High Pressure Sensor (G65)
            009 - Open or Short to Ground - Intermittent
01316 - ABS Control Module
            004 - No Signal/Communication - Intermittent
01314 - Engine Control Module
            004 - No Signal/Communication - Intermittent

-------------------------------------------------------------------------------
Address 09: Cent. Elect.        Labels:. 3C0-937-049-30-M.lbl
   Part No SW: 3C8 937 049 D    HW: 3C8 937 049 D
   Component: Bordnetz-SG     H54 2602 
   Revision: 00H54000    Serial number: 00000001019249
   Coding: 14018E234004150007140000001400000008730B5C000120000000000000
   Shop #: WSC 00066 000 00000
   VCID: 326BACCAAD2F67D4DE-8066

   Subsystem 1 - Component: Fehler Lin-Slave 01

10 Faults Found:
00906 - Horn (H1)
            009 - Open or Short to Ground - Intermittent
             Freeze Frame:
                    Fault Status: 00101001
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 5.00 V
                        OFF
                        OFF
                        OFF
                        OFF
                        OFF

02071 - Local Databus
            004 - No Signal/Communication
             Freeze Frame:
                    Fault Status: 01100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 5.00 V
                        OFF
                        OFF
                        OFF
                        OFF
                        OFF

00532 - Supply Voltage B+
            001 - Upper Limit Exceeded - Intermittent
             Freeze Frame:
                    Fault Status: 00100001
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 15.70 V
                        OFF
                        ON
                        OFF
                        OFF
                        OFF

02195 - Dimmer Switch Instrument Panel & Switch Lighting (E20)
            009 - Open or Short to Ground
             Freeze Frame:
                    Fault Status: 01101001
                    Fault Priority: 5
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                        ON
                    Voltage: 13.75 V
                        ON
                        ON
                        OFF
                        OFF
                        OFF

01321 - Control Module for Airbags (J234)
            008 - Implausible Signal - Intermittent
             Freeze Frame:
                    Fault Status: 00101000
                    Fault Priority: 2
                    Fault Frequency: 44
                    Reset counter: 81
                    Mileage: 349745 km
                    Time Indication: 0

             Freeze Frame:
                        ON
                    Voltage: 14.25 V
                        ON
                        ON
                        OFF
                        OFF
                        OFF

00447 - Function Limitation due to Over-Voltage
            001 - Upper Limit Exceeded - Intermittent
             Freeze Frame:
                    Fault Status: 00100001
                    Fault Priority: 4
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        ON
                    Voltage: 15.75 V
                        OFF
                        ON
                        OFF
                        OFF
                        OFF

00153 - Windshield Wiper Motor;  Driver Side (V216)
            004 - No Signal/Communication
             Freeze Frame:
                    Fault Status: 01100100
                    Fault Priority: 2
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 5.00 V
                        OFF
                        OFF
                        OFF
                        OFF
                        OFF

00926 - Terminal 30
            011 - Open Circuit - Intermittent
             Freeze Frame:
                    Fault Status: 00101011
                    Fault Priority: 4
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 5.00 V
                        OFF
                        OFF
                        OFF
                        OFF
                        OFF

00927 - Terminal 30 (Right)
            011 - Open Circuit - Intermittent
             Freeze Frame:
                    Fault Status: 00101011
                    Fault Priority: 1
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 5.00 V
                        OFF
                        OFF
                        OFF
                        OFF
                        OFF

00918 - Terminal 31
            011 - Open Circuit - Intermittent
             Freeze Frame:
                    Fault Status: 00101011
                    Fault Priority: 4
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 0 km
                    Time Indication: 0

             Freeze Frame:
                        OFF
                    Voltage: 5.00 V
                        OFF
                        OFF
                        OFF
                        OFF
                        OFF


-------------------------------------------------------------------------------
Address 0F: Digital Radio        Labels: 8E0-035-593-SIR.lbl
   Part No SW: 8E0 035 593 M    HW: 8E0 035 593 M
   Component: SDAR SIRIUS     H07 0150 
   Revision: 00000000    Serial number: AUZ4Z7H0377629
   Coding: 0000100
   Shop #: WSC 00066 000 00000
   VCID: 3365A9CE52356EDCD5-8066

3 Faults Found:
02635 - Tuner Not Enabled/Activated
            000 -  -
             Freeze Frame:
                    Fault Status: 01100000
                    Fault Priority: 7
                    Fault Frequency: 1
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 19:55:25

01304 - Unlicensed Version. Not all DTCs
            004 - will be decoded. - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 5
                    Fault Frequency: 5
                    Reset counter: 81
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 23:51:03

01305 - Unlicensed Version. Not all DTCs
            004 - will be decoded. - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 5
                    Fault Frequency: 1
                    Reset counter: 81
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 20:15:36


-------------------------------------------------------------------------------
Address 15: Airbags        Labels: 1K0-909-605.lbl
   Part No SW: 1K0 909 605 AB    HW: 1K0 909 605 AB
   Component: 6A AIRBAG VW8R  034 8000 
   Revision: 05034000    Serial number: 003B6M067CUB 
   Coding: 0013889
   Shop #: WSC 00066 000 00000
   VCID: 6CD772B24F8BF124D4-8038

   Subsystem 1 - Part No: 1K0 959 339 H
   Component: BF-Gewichtsens. 007 0006

   Subsystem 2 - Serial number: 6332MSME257354333

   Subsystem 3 - Serial number: 6342MSME257371197

   Subsystem 4 - Serial number: 6351HSME17182D021

   Subsystem 5 - Serial number: 6361HSME172524694

   Subsystem 6 - Serial number: 63727SME1C3B032B3

   Subsystem 7 - Serial number: 63827SME065A0B24%

2 Faults Found:
01316 - ABS Control Module
            004 - No Signal/Communication - Intermittent - MIL ON
01312 - Powertrain Data Bus
            014 - Defective - Intermittent - MIL ON

-------------------------------------------------------------------------------
Address 16: Steering wheel        Labels: 1K0-953-549-MY8.lbl
   Part No SW: 1K0 953 549 BS    HW: 1K0 953 549 BS
   Component: J0527           051 0101 
   Coding: 0012021
   Shop #: WSC 00066 000 00000
   VCID: 04073A12471B19643C-8050

   Subsystem 1 - Part No: XXXXXXXXXXX
   Component: E0221           002 0010

1 Fault Found:
00002 - Transmission Control Unit
            004 - No Signal/Communication

-------------------------------------------------------------------------------
Address 17: Instruments        Labels: 1K0-920-xxx-17.lbl
   Part No SW: 1K0 920 974 N    HW: 1K0 920 974 N
   Component: KOMBIINSTRUMENT 3HL 2418 
   Revision: V0003000    Serial number: VWX7Z0H7243057
   Coding: 0023203
   Shop #: WSC 00066 000 00000
   VCID: 39799BE67059948C1F-806C

2 Faults Found:
01315 - Transmission Control Module
            004 - No Signal/Communication
             Freeze Frame:
                    Fault Status: 01100100
                    Fault Priority: 2
                    Fault Frequency: 15
                    Reset counter: 41
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 21:52:11

01312 - Powertrain Data Bus
            004 - No Signal/Communication - Intermittent
             Freeze Frame:
                    Fault Status: 00100100
                    Fault Priority: 2
                    Fault Frequency: 122
                    Reset counter: 81
                    Mileage: 349745 km
                    Time Indication: 0
                    Date: 2000.00.00
                    Time: 21:24:56
 

BigTurboAlh

Veteran Member
Joined
Jan 8, 2016
Location
Pa
TDI
06 ranger cjaa swap
Code:
-------------------------------------------------------------------------------

Address 19: CAN Gateway        Labels:. 1K0-907-530-V3.clb

   Part No SW: 1K0 907 530 Q    HW: 1K0 907 951

   Component: J533  Gateway   H07 0062

   Revision:   H07 01    Serial number: 170608F2001633

   Coding: ED807F070013021002

   Shop #: WSC 00066 000 00000

   VCID: 356197D65C4170ECFB-8060



9 Faults Found:

01312 - Powertrain Data Bus

            014 - Defective - Intermittent

             Freeze Frame:

                    Fault Status: 00101110

                    Fault Priority: 1

                    Fault Frequency: 11

                    Reset counter: 255

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:35:49



01312 - Powertrain Data Bus

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00100100

                    Fault Priority: 1

                    Fault Frequency: 254

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:25:26



01314 - Engine Control Module

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00110100

                    Fault Priority: 2

                    Fault Frequency: 1

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:57



01315 - Transmission Control Module

            004 - No Signal/Communication

             Freeze Frame:

                    Fault Status: 01100100

                    Fault Priority: 2

                    Fault Frequency: 1

                    Reset counter: 41

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 20:26:39



01316 - ABS Control Module

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00110100

                    Fault Priority: 2

                    Fault Frequency: 1

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:57



00778 - Steering Angle Sensor (G85)

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00110100

                    Fault Priority: 2

                    Fault Frequency: 185

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:57



01321 - Control Module for Airbags (J234)

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00110100

                    Fault Priority: 2

                    Fault Frequency: 243

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:57



01309 - Power Steering Control Module (J500)

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00110100

                    Fault Priority: 2

                    Fault Frequency: 45

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:57



01304 - Radio

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00110100

                    Fault Priority: 2

                    Fault Frequency: 13

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 20:22:02





-------------------------------------------------------------------------------

Address 1C: Position Sensing        Labels: 1Kx-919-xxx-1C.lbl

   Part No SW: 1K5 919 965 A    HW: 1K5 919 965 A

   Component: Kompass         005 0004

   Revision: 00005000    Serial number: 1293324T35CG04

   Coding: 0000003

   Shop #: WSC 00066 000 00000

   VCID: 39799BE67059948C1F-806C



1 Fault Found:

01316 - ABS Control Module

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00100100

                    Fault Priority: 3

                    Fault Frequency: 9

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 20:12:10





-------------------------------------------------------------------------------

Address 25: Immobilizer        Labels: 1K0-920-xxx-25.clb

   Part No SW: 1K0 920 974 N    HW: 1K0 920 974 N

   Component: IMMO            3HL 2418

   Revision: V0003000    Serial number: VWX7Z0H7243057

   Shop #: WSC 00000 000 00000

   VCID: 39799BE67059948C1F-806C



No fault code found.



-------------------------------------------------------------------------------

Address 42: Door Elect, Driver        Labels:. 1K0-959-701-MIN3.clb

   Part No SW: 1K0 959 701 AC    HW: 1K0 959 793 N

   Component: J386  TUER-SG FT    1519

   Revision: 72009005    Serial number: 00000539488722

   Coding: 0001205

   Shop #: WSC 00066 000 00000

   VCID: 6FED65BE7E9D0A3CF1-803A



1 Fault Found:

01321 - Control Module for Airbags (J234)

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00100100

                    Fault Priority: 4

                    Fault Frequency: 27

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0





-------------------------------------------------------------------------------

Address 44: Steering Assist        Labels: 1K0-909-14x-GEN3.clb

   Part No: 1K0 909 144 C

   Component: EPS_ZFLS Kl. 70     2301

   Revision: 00H15000   

   Shop #: WSC 02069 000 90108

   VCID: 2A5BB4AA85FF2F1466-807E



1 Fault Found:

01312 - Powertrain Data Bus

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00100100

                    Fault Priority: 4

                    Fault Frequency: 1

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:56



             Freeze Frame:

                    Voltage: 13.13 V

                        DU

                    Temperature: 27.0°C

                    RPM: 1498 /min

                    Speed: 1.0 km/h

                    Speed: 50.0 km/h

                    Count: 0





-------------------------------------------------------------------------------

Address 46: Central Conv.        Labels:. 1K0-959-433-MAX.clb

   Part No SW: 1K0 959 433 CT    HW: 1K0 959 433 CT

   Component:    KSG PQ35 RDK 052 0221

   Revision: 00052000    Serial number: 00000000000000

   Coding: 13900F880186281B0904058FB0880F0488DC00

   Shop #: WSC 00066 000 00000

   VCID: 04073A12471B19643C-8050



   Subsystem 1 - Component:   Sounder n.mounted     



   Subsystem 2 - Component:       NGS n.mounted     



   Subsystem 3 - Component:      IRUE n.mounted     



2 Faults Found:

00457 - Control Module for Network (J519)

            013 - Check DTC Memory

             Freeze Frame:

                    Fault Status: 01101101

                    Fault Priority: 4

                    Fault Frequency: 1

                    Reset counter: 41

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 19:55:15



00532 - Supply Voltage B+

            001 - Upper Limit Exceeded - Intermittent

             Freeze Frame:

                    Fault Status: 00100001

                    Fault Priority: 4

                    Fault Frequency: 2

                    Reset counter: 81

                    Time Indication: 0





-------------------------------------------------------------------------------

Address 52: Door Elect, Pass.        Labels:. 1K0-959-702-MIN3.clb

   Part No SW: 1K0 959 702 AC    HW: 1K0 959 792 N

   Component: J387  TUER-SG BT    1519

   Revision: 72009005    Serial number: 00000809888724

   Coding: 0001204

   Shop #: WSC 00066 000 00000

   VCID: 70EF66C263A315C4E8-8024



1 Fault Found:

01321 - Control Module for Airbags (J234)

            004 - No Signal/Communication - Intermittent

             Freeze Frame:

                    Fault Status: 00100100

                    Fault Priority: 4

                    Fault Frequency: 29

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0





-------------------------------------------------------------------------------

Address 56: Radio

Cannot be reached



-------------------------------------------------------------------------------

Address 62: Door, Rear Left        Labels:. 1K0-959-703-GEN3.clb

   Part No SW: 1K0 959 703 AH    HW: 1K0 959 795 T

   Component: J388   TUER-SG HL   1401

   Revision: 12006001    Serial number: 00000003346191

   Coding: 0001168

   Shop #: WSC 00066 000 00000

   VCID: 76E350DA01C73BF432-8022



No fault code found.



-------------------------------------------------------------------------------

Address 65: Tire Pressure        Labels: 3C0-959-433-65.lbl

   Part No SW: 1K0 959 433 CT    HW: 1K0 959 433 CT

   Component:    RDK              0450

   Revision: 00052000    Serial number: 00000000000000

   Coding: 0100101

   Shop #: WSC 00066 000 00000

   VCID: 04073A12471B19643C-8050



1 Fault Found:

00625 - Vehicle Speed Signal

            008 - Implausible Signal - Intermittent

             Freeze Frame:

                    Fault Status: 00111000

                    Fault Priority: 4

                    Fault Frequency: 4

                    Reset counter: 81

                    Mileage: 349745 km

                    Time Indication: 0

                    Date: 2000.00.00

                    Time: 21:24:58
 

TurboABA

Top Post Dawg
Joined
Jul 24, 2010
Location
Kitchener, ON
TDI
RIP-2010 Jetta 6spd 2014 Touareg Execline
Oh boy.... is this a flood recovery or something? What was all apart before it quit working?
 

BigTurboAlh

Veteran Member
Joined
Jan 8, 2016
Location
Pa
TDI
06 ranger cjaa swap
Not that I know of car is real clean don’t have smell of water or anything. I bought it and drove it 2 hours home with some lights on brought it home and scanned it lol I think tonight I’m gonna start unplugging modules 1 by 1 till it has communication again.
 
Last edited:

TurboABA

Top Post Dawg
Joined
Jul 24, 2010
Location
Kitchener, ON
TDI
RIP-2010 Jetta 6spd 2014 Touareg Execline
Look up \ source Data Transfer On CAN Data Bus II - SSP 269
It should help a little.
 
Top