So I've been making a rolling antilag for my Volvo and have got a somewhat working model with the logic below but it only builds about 6psi of boost. I have it triggered by cruise control button.
I read on posts that you either need to retard timing via zwout. I tried adding code to change zwout but it went to limp mode. Unfortunately my FR is a Ford one and doesnt match the Volvo subroutines. What's everyone doing with the ME9 to successfully retard the timing?
Thanks in advance
lhz r31, (nmot_w - 0x7FFFF0)(r13)
cmplwi r31, 0x2260 (above 2200rpm)
ble Exit
lbz r31, (wped - 0x7FFFF0)(r13)
cmplwi r31, 0x32
ble Exit
lhz r31, (vfzg_w - 0x7FFFF0)(r13)
cmplwi r31, 20
ble Exit
li r31, 0
sth r31, (szout_w - 0x7FFFF0)(r13)
li r31, 3
stb r31, redsol - 0x7FFFF0)(r13)
Exit