Pages: [1]
Author Topic: 1.8t Me7.5 lc, nls, pops  (Read 3850 times)
MichVu
Newbie
*

Karma: +0/-3
Offline Offline

Posts: 8



« on: August 06, 2020, 05:09:29 AM »

So a friend of mine made a map for my 1.8t aum for 180 from auq and aded lc for 4,5 rpm pops and flat shift.
I have swapped engine so had to add a clutch switch to make it all working.
The problem is that neither lc or fs is working Cheesy,
Is it a problem with breaking pedal switch that is old 2 pin one and should be 4 pin ?
Logged
_nameless
Hero Member
*****

Karma: +323/-449
Online Online

Posts: 2688



« Reply #1 on: August 06, 2020, 06:30:50 AM »

Oh boy this is minutes from being added to the master bonehead thread
Logged

If you are in the market for a tune and would like the ease of downloading and flashing a dyno tested tune for a fair price check out https://instatune.sellfy.store/
MichVu
Newbie
*

Karma: +0/-3
Offline Offline

Posts: 8



« Reply #2 on: August 06, 2020, 06:40:47 AM »

Sorry if i posted in a wrong thread looking for a solution, im noobish in ecu moding
Logged
bamofo
Sr. Member
****

Karma: +34/-3
Offline Offline

Posts: 420


« Reply #3 on: August 06, 2020, 06:48:31 AM »

So a friend of mine made a map for my 1.8t aum for 180 from auq and aded lc for 4,5 rpm pops and flat shift.
I have swapped engine so had to add a clutch switch to make it all working.
The problem is that neither lc or fs is working Cheesy,
Is it a problem with breaking pedal switch that is old 2 pin one and should be 4 pin ?

If you PM me i can help you. Otherwise it will go in the noob thread that noone answers.
Logged
MichVu
Newbie
*

Karma: +0/-3
Offline Offline

Posts: 8



« Reply #4 on: August 06, 2020, 07:01:47 AM »

Replied on pm to you Wink
Logged
nyet
Administrator
Hero Member
*****

Karma: +604/-166
Offline Offline

Posts: 12233


WWW
« Reply #5 on: August 06, 2020, 09:13:54 AM »

If you PM me i can help you. Otherwise it will go in the noob thread that noone answers.

Please carry this on here then, in a productive thread that has commented ASM etc.

I'd appreciate it.

The PM/DM stuff is exactly why nothing interesting is in that thread.
Logged

ME7.1 tuning guide (READ FIRST)
ECUx Plot
ME7Sum checksum checker/corrrector for ME7.x

Please do not ask me for tunes. I'm here to help people make their own.

Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your experience.
MichVu
Newbie
*

Karma: +0/-3
Offline Offline

Posts: 8



« Reply #6 on: August 06, 2020, 01:14:53 PM »

Please carry this on here then, in a productive thread that has commented ASM etc.

I'd appreciate it.

The PM/DM stuff is exactly why nothing interesting is in that thread.

Sorry mate, post is for delete "bamofo" helped me alot infinity karma for that man !
If someone had similar problem like me, swapped in older cars etc. the problem is with cruise control lever.
Logged
bamofo
Sr. Member
****

Karma: +34/-3
Offline Offline

Posts: 420


« Reply #7 on: August 06, 2020, 07:22:14 PM »

Sorry mate, post is for delete "bamofo" helped me alot infinity karma for that man !
If someone had similar problem like me, swapped in older cars etc. the problem is with cruise control lever.

The problem was tmotlin in the asm I can post it tomorrow. There seems to be two problems with script. 1) it picks a variable that has a different multiplier. I’ll post findings
Logged
bamofo
Sr. Member
****

Karma: +34/-3
Offline Offline

Posts: 420


« Reply #8 on: August 07, 2020, 07:34:26 AM »

The problem was tmotlin in the asm I can post it tomorrow. There seems to be two problems with script. 1) it picks a variable that has a different multiplier. I’ll post findings

Before it was looking at Tmotlin which on this car worked. then he put in a new motor and my suspicion was that it was jumping out of the routing all together because of something before the Clutch Check. So i just took it out and moved up the code since its all based off jump routines.


Before -
eg016:F800 ; ---------------------------------------------------------------------------
seg016:F800                 movbz   r4, byte_C89F   ; Tmotlin grab
seg016:F804                 exts    #81h, #1 ; 'ü'
seg016:F808                 movbz   r9, 7A69h ; 817A69h ; target tmotlin to work
seg016:F80C                 cmp     r4, r9
seg016:F80E                 jmpr    cc_ULE, loc_9F890 ; if its not warm enough jump out
seg016:F810                 jnb     word_FD4C.3, loc_9F83A ; if the clutch isnt pressed jump out
seg016:F814                 mov     r4, word_9B50
seg016:F818                 exts    #81h, #1 ; 'ü'
seg016:F81C                 mov     r9, 7A60h ; 817A60h
seg016:F820                 cmp     r4, r9
seg016:F822                 jmpr    cc_NC, loc_9F83A
seg016:F824                 mov     r4, word_F89C
seg016:F828                 exts    #81h, #1 ; 'ü'
seg016:F82C                 mov     r9, 7A62h ; 817A62h
seg016:F830                 cmp     r4, r9
seg016:F832                 jmpr    cc_ULE, loc_9F83A
seg016:F834                 movb    byte_8B96, ZEROS
seg016:F838                 jmpr    cc_UC, loc_9F898

Update -

seg016:F800 ; ---------------------------------------------------------------------------
seg016:F800                 jnb     word_FD4C.3, loc_9F82A ; if clutch isnt pressed jump out
seg016:F804                 mov     r4, word_9B50
seg016:F808                 exts    #81h, #1 ; 'ü'
seg016:F80C                 mov     r9, 7A60h ; 817A60h
seg016:F810                 cmp     r4, r9
seg016:F812                 jmpr    cc_NC, loc_9F82A
seg016:F814                 mov     r4, word_F89C
seg016:F818                 exts    #81h, #1 ; 'ü'
seg016:F81C                 mov     r9, 7A62h ; 817A62h
seg016:F820                 cmp     r4, r9
seg016:F822                 jmpr    cc_ULE, loc_9F82A
seg016:F824                 movb    byte_8B96, ZEROS
seg016:F828                 jmpr    cc_UC, loc_9F888

Logged
nyet
Administrator
Hero Member
*****

Karma: +604/-166
Offline Offline

Posts: 12233


WWW
« Reply #9 on: August 07, 2020, 11:04:44 AM »

Again, thank you, bamofo!
Logged

ME7.1 tuning guide (READ FIRST)
ECUx Plot
ME7Sum checksum checker/corrrector for ME7.x

Please do not ask me for tunes. I'm here to help people make their own.

Do not PM me technical questions! Please, ask all questions on the forums! Doing so will ensure the next person with the same issue gets the opportunity to learn from your experience.
Pages: [1]
  Print  
 
Jump to:  

Powered by SMF 1.1.21 | SMF © 2015, Simple Machines Page created in 0.045 seconds with 18 queries. (Pretty URLs adds 0.001s, 0q)