Jump to content

Venomancer

Members
  • Posts

    23
  • Joined

  • Last visited

Venomancer's Achievements

  1. @Adamw It works! When I press the throttle the pump raises its RPM and when I let go, it lowers it. It seems that it cannot go to 0 RPM tho, maybe I should just switch it off with a condition if the wheel speed is over 200km/h. Thanks once again!!! I have changed the TPS on the GP PWM graph with Wheel speed, hopefully, it will work that way. I have one question about the streams, I see that you have used an %Ethanol in there, hopefully, this won't cause trouble when I install a flex fuel sensor to measure the ethanol %. Sorry for my ignorance, I'm just new to all of this and not sure if it is related somehow. 3000gt Volvo EPAS CAN.pclx
  2. Thank you so much! I will try it now and report back.
  3. Hey, @Adamw! Have you got any spare time to tinker with the MAP?
  4. Hey Adam! Here is a file of my MAP. Thank you very much! The CAN port is Number 2. 3000gt current.pclx
  5. Oh, man! Thank you for this info! I will have to read that some more times unless I'm able to assimilate it and understand all the bits. Can I send you the Map so you can do it properly? I will be glad to pay you if you would like me to.
  6. Thank you, Adam. As I said, I will gladly pay for your time if you decide.
  7. Come on guys is there really no one here who is capable of doing this? I'm willing to pay you if that is whats stopping you from helping out. It seems as if there are several controllers online that can control the pump via GPS speed signal, however, I would like to do so via the Link. Didn't spend that much money on it if it can't control one pump... It's really a shame
  8. Thank you for the reply. I don't understand any of this... The pump is currently switched on via AUX 3 with the condition of the engine running. Not sure about that Keep Alive you're talking about, but I would like to be able to control the the pump via CAN, so it can be on 100% when VS is below 40kph and to be 0% when over 200kmh or something like that.
  9. Hello. I have a Link G4X P&P for Evo I-III and I would like to control my Volvo Electric Power Steering Pump via CAN. Does anyone have the ability to help me out? I found some info about the can codes that operate the pump, but I'm not smart enough to know what they mean and how to make it work in the PC Link Software. Here is a link to the article: https://rusefi.com/forum/viewtopic.php?p=45441#p45441 Here are the LUA codes: -- "alive" message from pump canRxAdd(0x1B200002) local pumpAlive = Timer.new() function onCanRx(bus, id, dlc, data) if id == 0x1B200002 then pumpAlive:reset() end end local data_0x1ae0092c = { 0x00, 0x00, 0x22, 0xe0, 0x41, 0x90, 0x00, 0x00 } local data_0x02104136 = { 0xbb, 0x00, 0x3f, 0xff, 0x06, 0xe0, 0x00, 0x00 } local slowCounter = 0 local slowRoll = 0 local slowRollTable = { 0x00, 0x40, 0x80, 0xC0 } -- car stopped is 0 -- car "moving fast" is 6000 (whatever that means?) local speedVal = 1000 function onTick() if pumpAlive:getElapsedSeconds() < 1 then -- Ignition on frame: sends every 30th speed frame if slowCounter == 0 then -- cycle through 0, 40, 80, c0 slowRoll = (slowRoll + 1) & 3 data_0x1ae0092c[1] = slowRollTable[slowRoll + 1] txCan(1, 0x1ae0092c, 1, data_0x1ae0092c) slowCounter = 30 end slowCounter = slowCounter - 1 data_0x02104136[7] = (speedVal >> 8) & 0xFF data_0x02104136[8] = speedVal & 0xFF -- pump speed frame txCan(1, 0x02104136, 1, data_0x02104136) end end setTickRate(71) Also, I know that MAXX ECU has cracked the code to make this pump works on their CAN and there is some info about this on the exact same threat on this forum: maxxecu sends IDs 2104136 and 1ae0092c to the pump2104136 is ~71.4hz1ae0092c is ~2.38hzexact 30:1 ratiopump responds at 11.84hz, which is 1/6 the rate of 2104136 I will be very thankful if anyone has the ability to help me out with this! Cheers!
  10. Hey! I haven't had time to tinker with this. I copied the ChromedECU ignition degrees without reducing them, but I don't really go much into boost anyway, because I've put my solenoid at 0. I will install a knock-block that I purchased from Link and monitor the knock with headphones to see how the engine works with that timing once I have the time. Then I will set the threshold and call it a day. I will update once I figure everything out.
  11. Hello! Have you found a way to control the Volvo steering pump with your Link?
  12. Hello there! Have you found a way to control this steering pump? I have a Volvo PS pump and a Link G4X and I would like to know if it's possible to control it through the ECU.
  13. Ok, so far I have managed to normalise idle and get a steady cruise tune to be able to move the car around. However, I have one concern to dive into steady state fuel and ignition tuning and therefore full power tuning after that, because I do not have a pair of knock monitoring headphones and while I am aware of how to set up the knock detection, I'm not sure of what threshold and gain to use without being able to listen for knock. Does anyone have any idea about the particular engine, a 6G72 Turbo in stock condition, what would be a good threshold and gain setting? Also, I've calculated the knock frequency to be around the 6Khz mark, but I heard that the second harmonic at 12Khz is better to be used for knock monitoring. I would be very glad if someone helps me with this.
  14. I will be making a post once I manage to get everything going as it should.
×
×
  • Create New...