Page 2 of 2

Re: Suggestion for starting 1st project

Posted: Sun Jun 05, 2022 6:56 am
by mck1117
stayros32001 wrote:
Sun May 29, 2022 11:59 am

Now the real problem:
I got the .bin from https://github.com/mck1117/wideband/blob/master/for_rusefi/wideband_image_with_bl.bin
But only the version at july 2021 works, all the other versions not!

what I mean works:

july 2021 .bin
wbo starts, exits bootloader and wait for sensor. If there is sensor it heats the sensor and enters in normal operation mode. If no sensor is connected, after 30s led is flashing for 3 times. In theory the WBO works perfect, but NO CAN communication at all!

All the other .bin versions (newer) heat the sensor for ever!
No matter if the 30s have past, or if the sensor is connected, the led blinks constantly at heating mode.
Try again with newer rusEFI firmware - the wideband controller is now controlled a little bit by the ECU (tells it when to start heating so you don't crack the sensor), so you need newer rusEFI to match newer wideband firmware. The latest prerelease on github has the new wideband protocol support.

Re: Suggestion for starting 1st project

Posted: Mon Jun 06, 2022 9:03 pm
by stayros32001
mck1117 wrote:
Sun Jun 05, 2022 6:56 am

Try again with newer rusEFI firmware - the wideband controller is now controlled a little bit by the ECU (tells it when to start heating so you don't crack the sensor), so you need newer rusEFI to match newer wideband firmware. The latest prerelease on github has the new wideband protocol support.

Actually this is the answer to the problem. Because I was bench-testing** after some point. That means no 12V at the MRE.
So, now with latest release and latest wideband firmware and connected to the car it worked!

New tune profiles were uploaded and logs also!



Thanks a lot !!!


**After every flashing I was waiting to see if it works in the bench. This means that I was waiting to see the blue light (no sensor/error at heating).
(I suppose that the old version was not supported by newer MRE versions, because the lights worked but no can communication).
So I had one that I thought it was working, but no can communication, and all the others that they really worked, but never tested with the car!

Re: Suggestion for starting 1st project

Posted: Mon Jun 13, 2022 10:21 pm
by stayros32001
Hi Again!
Is there any way to do this?:
If CLT is over 100c turn on this light! (dash warning light)

Re: Suggestion for starting 1st project

Posted: Mon Jun 13, 2022 11:48 pm
by AndreyB
https://github.com/rusefi/rusefi/wiki/Lua-Scripting is the hard way

GPPWM should be the easy way but it does not support CLT axis yet https://github.com/rusefi/rusefi/issues/3624

Re: Suggestion for starting 1st project

Posted: Tue Jun 14, 2022 7:57 am
by mck1117
AndreyB wrote:
Mon Jun 13, 2022 11:48 pm
GPPWM should be the easy way but it does not support CLT axis yet
Not true, it supports it already for the Y axis. I use it to control my electric water pump.

Re: Suggestion for starting 1st project

Posted: Tue Jun 14, 2022 10:07 am
by stayros32001
AndreyB wrote:
Mon Jun 13, 2022 11:48 pm
https://github.com/rusefi/rusefi/wiki/Lua-Scripting is the hard way

GPPWM should be the easy way but it does not support CLT axis yet https://github.com/rusefi/rusefi/issues/3624
of course I prefer the Hard way. I already now this, but I was not sure if it can be used for lights.
So I suppose that I have to set it like this?
(I will check the Lua syntax first!)

Code: Select all



function onTick()
 if getSensor("CLT") > 100 then

 setPwmDuty(0,100, 1)



Re: Success Story Fiat 128 / Zastava 101 1500cc on MRE

Posted: Wed Aug 17, 2022 12:29 pm
by stayros32001
New Question about check Engine Function!

Ok, at start it blinks once, and TS menu says that in case an error, it will blink for 10sec by default.
But what actually is an error?
I wanted to check the functionality of check engine and I removed one injector, but nothing happened.


Re: Success Story Fiat 128 / Zastava 101 1500cc on MRE

Posted: Wed Aug 17, 2022 1:08 pm
by AndreyB