STD Tuning Engine Garrett 712120 VNT Hella 6NW 008 412 actuator.

Garrett 712120 VNT Hella 6NW 008 412 actuator.

Garrett 712120 VNT Hella 6NW 008 412 actuator.

 
  • 2 Vote(s) - 5 Average
 
300SD81
GT2559V

187
10-29-2009, 05:01 PM #40
(10-29-2009, 02:12 PM)Tymbrymi Unfortunately, it DOES care about the frequency. Not sure what its range is, but I remember it didn't work at just any old frequency. Sad I don't think it'll work on an analog voltage either.

You could always get a better PIC Wink That definitely sucks though. It's annoying to have to bit-bang stuff when you have a hardware peripheral that should be able to do it.

Yep! But they're on my old phone, which I won't be able to get to till tonight. I'll try and post them if I get the chance.

Guess I'll just bit-bang it then, not too hard anyways, I can still use the timer to do most of the work.. I could get a better one, but what am I going to do with the stack of 18F14K22s I ordered for another scrapped project??Undecided

Looking forward to those voltage readings before I try anything on the actuator.

EDIT: Any ideas on what the resolution of the actuator is? I kinda want to drop it down to 256 possible steps to get some cpu cycles back...

Heres the PWM code I worked up, seems to run ok in the simulator.
[Image: scr1.th.png][Image: scr2w.th.png]

1000ms/7.119938ms = 140.45066Hz, should be close enough...
Code:

#include <p18cxxx.h>
#include "enc28j60.h"
#include "typedefs.h"

void init(void);
void pwm_init(void);
void isr_high(void);
void isr_low(void);

volatile BYTE pwm_duty_cycle = 128;
#define PWM_HIGH_STATE 0
#define PWM_LOW_STATE 1

/**************** INTERRUPTS ****************/
#pragma code high_vector=0x08
void interrupt_at_high_vector(void) {
    _asm GOTO isr_high _endasm
}
#pragma code

#pragma code low_vector=0x18
void interrupt_at_low_vector(void) {
    _asm GOTO isr_low _endasm
}
#pragma code

#pragma interrupt isr_high
void isr_high(void) {
    /**High Priority ISR**/
    /**Timer0 Overflow**/
    //TMR0L = 32;
    static BYTE pwm_num_ovrflw = 0;
    TMR0L = 40;
    if (pwm_num_ovrflw == pwm_duty_cycle) {
        // PWM Pin Low
        PORTCbits.RC5 = PWM_LOW_STATE;
    }else if (pwm_num_ovrflw == 0xFF) {
        pwm_num_ovrflw = 0;
        // PWM Pin High
        PORTCbits.RC5 = PWM_HIGH_STATE;
    }
    pwm_num_ovrflw++;
    //Clear Interrupt Flag
    INTCONbits.TMR0IF = 0;
}

#pragma interruptlow isr_low
void isr_low(void) {
    /**Low Priority ISR**/
}
/************** END INTERRUPTS **************/

void main (void) {
    init();
    while (1) {
        _asm NOP _endasm
    }
}

void init (void) {
    
    //Set Oscillator to 64MHz
    OSCCONbits.IRCF0 = 1;
    OSCCONbits.IRCF1 = 1;
    OSCCONbits.IRCF2 = 1;

    //Set Pin 12 Output High (Pin 12 is the power source for the level shifter)
    TRISBbits.TRISB5 = 0;
    PORTBbits.RB5 = 1;

    //Enable Interrupt Priority
    RCONbits.IPEN = 1;
    //Disable All Individual Interrupts
    INTCON = 0;
    INTCON3 = 0;
    //Set All Peripherial Interrupts = Disabled & Low Priority
    PIE1 = 0;
    IPR1 = 0;
    PIE2 = 0;
    IPR2 = 0;
    //Global High/Low Priority Interrupt Enable
    INTCONbits.GIEH = 1;
    INTCONbits.GIEL = 1;

    // Initialize the Ethernet Module
    //enc_init();

    // Start PWM Output
    pwm_init();
}

void pwm_init (void) {
    /*
    Timer0 PWM Setup
        Increment at 8MHz (0.125us)
        Overflow every 27.9017858us (35840Hz) (for 256 step PWM)
            = Increment 223.214286x Before Overflow
                -> Start Timer at 255-223 = 32
    */

    // Pin 5 as Output
    TRISCbits.TRISC5 = 0;
    
    // PWM Low
    PORTCbits.RC5 = PWM_LOW_STATE;
    
    //Disable Timer0
    T0CONbits.TMR0ON = 0;

    // 8-Bit Timer
    T0CONbits.T08BIT = 1;

    // Use Instruction Clock
    T0CONbits.T0CS = 0;

    // 1:2 Prescaler, 8MHz
    T0CONbits.PSA = 0;
    T0CONbits.T0PS0 = 0;
    T0CONbits.T0PS1 = 0;
    T0CONbits.T0PS2 = 0;

    // Enable Timer0 Overflow Interrupt
    INTCONbits.TMR0IF = 0;
    INTCONbits.TMR0IE = 1;

    //Enable Timer
    T0CONbits.TMR0ON = 1;
}
This post was last modified: 10-29-2009, 10:51 PM by 300SD81.

Ich liebe meine Autos!

1981 Mercedes-Benz 300SD | 156K Miles | 2nd Owner | EGR Disabled [Removal Pending] | ALDA Removed | Straight Pipes | GT2256V??? | Laser Interceptor | Engine swap over summer, hopefully with GT2256V attached...

1981 Mercedes-Benz 300SD | Odo Stopped at 160K (at least 50K more) | EGR Disabled | ALDA All The Way Out | Straight pipes | FM-870 Remote Start Alarm System | B100 Biodiesel | AC Fixed x2 | Trunk crushed in Sad | Retired to garage.

Excessive speeding? It ain't excessive till I redline!
300SD81
10-29-2009, 05:01 PM #40

(10-29-2009, 02:12 PM)Tymbrymi Unfortunately, it DOES care about the frequency. Not sure what its range is, but I remember it didn't work at just any old frequency. Sad I don't think it'll work on an analog voltage either.

You could always get a better PIC Wink That definitely sucks though. It's annoying to have to bit-bang stuff when you have a hardware peripheral that should be able to do it.

Yep! But they're on my old phone, which I won't be able to get to till tonight. I'll try and post them if I get the chance.

Guess I'll just bit-bang it then, not too hard anyways, I can still use the timer to do most of the work.. I could get a better one, but what am I going to do with the stack of 18F14K22s I ordered for another scrapped project??Undecided

Looking forward to those voltage readings before I try anything on the actuator.

EDIT: Any ideas on what the resolution of the actuator is? I kinda want to drop it down to 256 possible steps to get some cpu cycles back...

Heres the PWM code I worked up, seems to run ok in the simulator.
[Image: scr1.th.png][Image: scr2w.th.png]

1000ms/7.119938ms = 140.45066Hz, should be close enough...
Code:

#include <p18cxxx.h>
#include "enc28j60.h"
#include "typedefs.h"

void init(void);
void pwm_init(void);
void isr_high(void);
void isr_low(void);

volatile BYTE pwm_duty_cycle = 128;
#define PWM_HIGH_STATE 0
#define PWM_LOW_STATE 1

/**************** INTERRUPTS ****************/
#pragma code high_vector=0x08
void interrupt_at_high_vector(void) {
    _asm GOTO isr_high _endasm
}
#pragma code

#pragma code low_vector=0x18
void interrupt_at_low_vector(void) {
    _asm GOTO isr_low _endasm
}
#pragma code

#pragma interrupt isr_high
void isr_high(void) {
    /**High Priority ISR**/
    /**Timer0 Overflow**/
    //TMR0L = 32;
    static BYTE pwm_num_ovrflw = 0;
    TMR0L = 40;
    if (pwm_num_ovrflw == pwm_duty_cycle) {
        // PWM Pin Low
        PORTCbits.RC5 = PWM_LOW_STATE;
    }else if (pwm_num_ovrflw == 0xFF) {
        pwm_num_ovrflw = 0;
        // PWM Pin High
        PORTCbits.RC5 = PWM_HIGH_STATE;
    }
    pwm_num_ovrflw++;
    //Clear Interrupt Flag
    INTCONbits.TMR0IF = 0;
}

#pragma interruptlow isr_low
void isr_low(void) {
    /**Low Priority ISR**/
}
/************** END INTERRUPTS **************/

void main (void) {
    init();
    while (1) {
        _asm NOP _endasm
    }
}

void init (void) {
    
    //Set Oscillator to 64MHz
    OSCCONbits.IRCF0 = 1;
    OSCCONbits.IRCF1 = 1;
    OSCCONbits.IRCF2 = 1;

    //Set Pin 12 Output High (Pin 12 is the power source for the level shifter)
    TRISBbits.TRISB5 = 0;
    PORTBbits.RB5 = 1;

    //Enable Interrupt Priority
    RCONbits.IPEN = 1;
    //Disable All Individual Interrupts
    INTCON = 0;
    INTCON3 = 0;
    //Set All Peripherial Interrupts = Disabled & Low Priority
    PIE1 = 0;
    IPR1 = 0;
    PIE2 = 0;
    IPR2 = 0;
    //Global High/Low Priority Interrupt Enable
    INTCONbits.GIEH = 1;
    INTCONbits.GIEL = 1;

    // Initialize the Ethernet Module
    //enc_init();

    // Start PWM Output
    pwm_init();
}

void pwm_init (void) {
    /*
    Timer0 PWM Setup
        Increment at 8MHz (0.125us)
        Overflow every 27.9017858us (35840Hz) (for 256 step PWM)
            = Increment 223.214286x Before Overflow
                -> Start Timer at 255-223 = 32
    */

    // Pin 5 as Output
    TRISCbits.TRISC5 = 0;
    
    // PWM Low
    PORTCbits.RC5 = PWM_LOW_STATE;
    
    //Disable Timer0
    T0CONbits.TMR0ON = 0;

    // 8-Bit Timer
    T0CONbits.T08BIT = 1;

    // Use Instruction Clock
    T0CONbits.T0CS = 0;

    // 1:2 Prescaler, 8MHz
    T0CONbits.PSA = 0;
    T0CONbits.T0PS0 = 0;
    T0CONbits.T0PS1 = 0;
    T0CONbits.T0PS2 = 0;

    // Enable Timer0 Overflow Interrupt
    INTCONbits.TMR0IF = 0;
    INTCONbits.TMR0IE = 1;

    //Enable Timer
    T0CONbits.TMR0ON = 1;
}


Ich liebe meine Autos!

1981 Mercedes-Benz 300SD | 156K Miles | 2nd Owner | EGR Disabled [Removal Pending] | ALDA Removed | Straight Pipes | GT2256V??? | Laser Interceptor | Engine swap over summer, hopefully with GT2256V attached...

1981 Mercedes-Benz 300SD | Odo Stopped at 160K (at least 50K more) | EGR Disabled | ALDA All The Way Out | Straight pipes | FM-870 Remote Start Alarm System | B100 Biodiesel | AC Fixed x2 | Trunk crushed in Sad | Retired to garage.

Excessive speeding? It ain't excessive till I redline!

 
  • 2 Vote(s) - 5 Average

Messages In This Thread
Garrett 712120 VNT Hella 6NW 008 412 actuator. - by tomnik - 08-18-2009, 09:13 AM
RE: electronic actuator? - by Tymbrymi - 08-25-2009, 01:15 PM
RE: electronic actuator? - by tomnik - 08-27-2009, 07:15 AM
RE: electronic actuator? - by winmutt - 09-01-2009, 09:01 AM
RE: electronic actuator? - by Tymbrymi - 09-01-2009, 09:28 AM
RE: electronic actuator? - by winmutt - 09-01-2009, 03:51 PM
RE: electronic actuator? - by tomnik - 09-01-2009, 09:49 AM
RE: electronic actuator? - by Tymbrymi - 09-03-2009, 08:31 AM
RE: electronic actuator? - by winmutt - 09-03-2009, 01:18 PM
RE: electronic actuator? - by Tymbrymi - 09-03-2009, 01:32 PM
RE: electronic actuator? - by winmutt - 09-03-2009, 02:23 PM
RE: Garrett VNT Hella actuator. - by winmutt - 09-04-2009, 08:21 AM
RE: Garrett VNT Hella actuator. - by Tymbrymi - 09-04-2009, 11:30 AM
RE: Garrett VNT Hella actuator. - by winmutt - 09-04-2009, 03:17 PM
RE: Garrett VNT Hella actuator. - by winmutt - 09-04-2009, 12:29 PM
RE: Garrett VNT Hella actuator. - by Tymbrymi - 09-04-2009, 01:36 PM
RE: Garrett VNT Hella actuator. - by winmutt - 09-05-2009, 10:26 AM
RE: Garrett VNT Hella actuator. - by Tymbrymi - 09-05-2009, 10:14 PM
RE: Garrett VNT Hella actuator. - by winmutt - 10-22-2009, 11:22 PM
RE: Garrett VNT Hella actuator. - by Tymbrymi - 10-23-2009, 09:55 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 09-05-2009, 10:49 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 09-08-2009, 10:12 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 09-08-2009, 02:21 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 09-09-2009, 08:38 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 09-09-2009, 10:28 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 09-10-2009, 08:02 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by ForcedInduction - 09-14-2009, 04:09 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 10-19-2009, 02:29 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 10-20-2009, 10:51 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 10-23-2009, 01:41 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 10-23-2009, 03:51 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 10-27-2009, 08:42 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 10-28-2009, 09:48 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 10-28-2009, 10:34 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 10-27-2009, 11:36 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 10-29-2009, 12:21 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 10-29-2009, 02:12 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 10-29-2009, 05:01 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 10-29-2009, 12:38 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 10-29-2009, 02:06 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by piledriver - 10-29-2009, 08:07 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 10-29-2009, 09:29 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 10-30-2009, 08:25 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-02-2009, 11:25 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 11-03-2009, 03:48 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-03-2009, 04:01 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 11-05-2009, 10:32 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 11-04-2009, 04:53 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-04-2009, 09:36 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 11-05-2009, 12:26 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-05-2009, 01:38 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-06-2009, 04:22 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by muuris - 01-12-2010, 10:58 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 01-12-2010, 04:07 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by muuris - 01-13-2010, 05:39 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-08-2009, 03:40 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 11-09-2009, 02:40 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-14-2009, 05:00 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by cell - 11-19-2009, 03:35 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 11-21-2009, 03:32 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by ForcedInduction - 11-21-2009, 05:01 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by nockter - 12-05-2009, 01:40 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-07-2009, 02:08 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by lars - 12-08-2009, 05:25 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-08-2009, 11:21 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 12-08-2009, 07:19 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 12-14-2009, 03:28 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 01-12-2010, 04:45 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by kmaser - 01-12-2010, 05:52 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by cell - 01-23-2010, 08:09 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Kiwibacon - 01-23-2010, 08:23 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by cell - 01-23-2010, 08:25 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 01-26-2010, 04:02 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by ForcedInduction - 02-07-2010, 07:25 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 02-08-2010, 10:41 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by ForcedInduction - 02-11-2010, 02:13 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 02-18-2010, 10:36 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by cell - 02-19-2010, 01:30 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 03-30-2010, 01:19 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by racerxoffl - 10-19-2010, 11:39 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by TB206HDI - 09-23-2010, 02:56 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by dgn555 - 09-23-2010, 02:24 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 09-23-2010, 03:05 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by dgn555 - 10-03-2010, 06:53 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-01-2010, 03:46 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-01-2010, 10:39 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-02-2010, 02:58 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 12-02-2010, 07:48 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-02-2010, 09:07 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-02-2010, 10:03 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Tymbrymi - 12-02-2010, 12:31 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-08-2010, 06:31 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-01-2010, 10:53 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-06-2010, 01:32 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Captain America - 12-07-2010, 04:07 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-08-2010, 10:25 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-09-2010, 02:24 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-09-2010, 11:32 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-15-2010, 03:22 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 12-15-2010, 09:14 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-17-2010, 03:49 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-15-2011, 07:20 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by tomnik - 04-15-2011, 08:03 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-16-2011, 02:44 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 04-21-2011, 03:38 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300D50 - 12-15-2010, 09:10 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-16-2010, 11:49 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300D50 - 12-16-2010, 11:55 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-16-2010, 03:43 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300D50 - 12-16-2010, 06:50 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-16-2010, 08:35 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300D50 - 12-17-2010, 11:03 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-17-2010, 11:09 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 12-20-2010, 10:21 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 01-16-2011, 10:42 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 01-18-2011, 02:37 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Biohazard - 01-18-2011, 09:52 AM
It's the "post your actuator guts" thread now - by aaa - 04-15-2011, 02:41 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by tomnik - 04-17-2011, 11:25 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-18-2011, 01:30 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by tomnik - 04-18-2011, 02:25 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-18-2011, 02:59 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 04-18-2011, 11:47 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 04-18-2011, 09:29 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-19-2011, 02:33 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by 300SD81 - 04-19-2011, 09:16 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-20-2011, 08:39 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 04-20-2011, 08:48 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Pali - 04-21-2011, 03:01 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 07-01-2011, 04:07 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by winmutt - 07-01-2011, 03:57 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 07-05-2011, 02:21 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 01-25-2012, 02:45 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 02-20-2012, 04:20 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 01-29-2012, 11:16 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Rub87 - 01-29-2012, 02:47 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by majesty78 - 01-30-2012, 04:21 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Rub87 - 01-30-2012, 05:03 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 01-30-2012, 01:45 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 02-20-2012, 11:13 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 02-22-2012, 05:42 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 07-17-2012, 07:03 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 09-25-2012, 03:46 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 07-18-2012, 05:25 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by raysorenson - 07-18-2012, 10:56 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 10-09-2013, 08:58 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by pemtek - 11-04-2013, 06:22 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by janus - 11-05-2013, 01:47 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by pemtek - 11-05-2013, 03:49 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Iangiulu - 07-10-2014, 02:06 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Iangiulu - 07-12-2014, 02:42 PM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by Darqs - 12-18-2014, 03:06 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by antonmies - 01-23-2015, 06:43 AM
RE: Garrett 712120 VNT Hella 6NW 008 412 actuator. - by HoleshotHolset - 04-15-2015, 10:37 AM
Users browsing this thread:
 17 Guest(s)
Users browsing this thread:
 17 Guest(s)