Search found 215 matches

by royhen99
Wed May 01, 2024 6:37 pm
Forum: Vehicle Control (VCU)
Topic: Zombie not going into Run mode
Replies: 16
Views: 273

Re: Zombie not going into Run mode

Status has to be "none" to go into run mode. Ideally the throttle has to be connected and calibrated correctly, but may work if disconnected and potmin set to 0.
by royhen99
Wed May 01, 2024 5:50 pm
Forum: Vehicle Control (VCU)
Topic: Zombie not going into Run mode
Replies: 16
Views: 273

Re: Zombie not going into Run mode

If status is PotPressed then the throttle pedal calibration is not correct. potmin needs to be lower than pot by 10 - 20. If using dual pot then pot2min needs to be adjusted as well although this is not checked for going into run mode.
by royhen99
Wed May 01, 2024 4:30 pm
Forum: Vehicle Control (VCU)
Topic: Zombie not going into Run mode
Replies: 16
Views: 273

Re: Zombie not going into Run mode

Is status "none" or "PotPressed"?
by royhen99
Wed May 01, 2024 2:51 pm
Forum: Vehicle Control (VCU)
Topic: Zombie not going into Run mode
Replies: 16
Views: 273

Re: Zombie not going into Run mode

deleted as similar to above.
by royhen99
Wed Apr 24, 2024 1:03 pm
Forum: Battery Managment (BMS)
Topic: Simp BMS
Replies: 643
Views: 239202

Re: Simp BMS

I tested this last year. Battery modules and Sbox clash on id 0x100 so can not share the same bus.
by royhen99
Tue Apr 16, 2024 8:45 pm
Forum: Nissan
Topic: Leaf Gen 1 Inverter Board
Replies: 319
Views: 167703

Re: Leaf Gen 1 Inverter Board

That's what I would expect. The ISA shunt data is sent to Serial2 which is the wifi interface. To view it on the terminal you to need to change Serial2 to Serial, or you could copy the code so it sends to both.
by royhen99
Tue Apr 16, 2024 4:40 pm
Forum: Nissan
Topic: Leaf Gen 1 Inverter Board
Replies: 319
Views: 167703

Re: Leaf Gen 1 Inverter Board

I have tested with your exact code with the } fixed and it all works. I am only sending messages to Can0 and don't have wifi so all readings are going to Serial ( I am using Arduino Due so just looking with serial monitor in IDE ). I thought it might be a timing problem as CheckCAN is polled in loop...
by royhen99
Tue Apr 16, 2024 12:59 pm
Forum: Mitsubishi
Topic: Can you identify this Outlander item?
Replies: 6
Views: 589

Re: Can you identify this Outlander item?

From searches for part number this is dc to 110V AC. The dc-dc 12V converter part number TW-90 / 37129-01001, ( for heated windows ) has fans but they blow air over an external heatsink. The dc - 230V converter is also made by Toyota Industries is part number 9461A092.
by royhen99
Tue Apr 16, 2024 11:32 am
Forum: Nissan
Topic: Leaf Gen 1 Inverter Board
Replies: 319
Views: 167703

Re: Leaf Gen 1 Inverter Board

There's a small error in CheckCan } if(inFrame.id >= 0x521 && inFrame.id <= 0x528 && inFrame.length == 8){ Sensor.ISA::gotFrame(&inFrame, 0); //Added by royhen99 } //////////////////////////////////////////////////////////////////////////////////////////////// } should be if(inFr...
by royhen99
Mon Apr 15, 2024 11:21 pm
Forum: Projects
Topic: [WIP] AC Charging!!! Project Rising Sun: Suzuki SJ410k meets Leaf full stack
Replies: 17
Views: 5167

Re: [WIP] Project Rising Sun: Suzuki SJ410k meets Leaf full stack

0x59E, 0x55B and 0x5BC. If you look at each id one at a time it's clear that most of the messages sent are the fixed values from leafinv.cpp.
by royhen99
Mon Apr 15, 2024 6:29 pm
Forum: Nissan
Topic: Leaf Gen 1 Inverter Board
Replies: 319
Views: 167703

Re: Leaf Gen 1 Inverter Board

I think I have fixed it. The isa library has is own interrupt service routine which takes priority over the routine in the main code. The modifications below fix this by calling the isa interrupt routine from the main code. I have checked with appropriate ids and data generated in Savvycan. 1) in IS...
by royhen99
Mon Apr 15, 2024 10:37 am
Forum: Projects
Topic: [WIP] AC Charging!!! Project Rising Sun: Suzuki SJ410k meets Leaf full stack
Replies: 17
Views: 5167

Re: [WIP] Project Rising Sun: Suzuki SJ410k meets Leaf full stack

I have no experience with leaf PDM etc, but your code on github does not look up to date as it does not compile and has other errors. From you CAN log the zombieverter is still sending data on 3 ids which may be causing the problems. I think this is because where you have declared/defined the variab...
by royhen99
Sun Apr 14, 2024 8:55 pm
Forum: Nissan
Topic: Leaf Gen 1 Inverter Board
Replies: 319
Views: 167703

Re: Leaf Gen 1 Inverter Board

Seting up the ISA shunt sets a filter on can0 that blocks the inverter can ids.

Adding the line in bold after Sensor.begin may fix it.

Sensor.begin(port,datarate);
port->setRXFilter(0, 0x100 0x300, false); // this allows ids 0x100 - 0x1FF and 0x500 - 0x5FF to pass
by royhen99
Fri Apr 12, 2024 12:28 pm
Forum: Battery Managment (BMS)
Topic: BMW 330e pack balancing
Replies: 12
Views: 645

Re: BMW 330e pack balancing

Cell voltage readings are only valid when not balancing so they are updated every minute. The min to max cell voltage difference is checked against the "Balance Voltage Hysteresis" setting and balancing cycle continues until this is met.
by royhen99
Fri Apr 12, 2024 11:54 am
Forum: Battery Managment (BMS)
Topic: BMW 330e pack balancing
Replies: 12
Views: 645

Re: BMW 330e pack balancing

Cells in series per string should be 96.
by royhen99
Fri Apr 12, 2024 10:08 am
Forum: Battery Managment (BMS)
Topic: BMW 330e pack balancing
Replies: 12
Views: 645

Re: BMW 330e pack balancing

balstat indicates which individual cells are being balanced. 1 balancing, 0 not balancing. It's one digit per cell so 0xFFFF is all 16 cells in a module balancing.
by royhen99
Fri Apr 12, 2024 9:01 am
Forum: Battery Managment (BMS)
Topic: BMW 330e pack balancing
Replies: 12
Views: 645

Re: BMW 330e pack balancing

Simpbms code balances BMW phev packs. The rate is very slow, maybe only 2mV per hour so a 150mV imbalance could take 2 - 3 days to balance.
by royhen99
Mon Apr 08, 2024 12:08 pm
Forum: Projects
Topic: [WIP] BMW Z3
Replies: 340
Views: 203820

Re: [WIP] BMW Z3

I think the numbers across the bottom are sample number. The time varies with "Burst length" but from tests I have done it is about 27-28ms per sample with "Burst length" = 10.
by royhen99
Mon Apr 01, 2024 12:55 pm
Forum: General
Topic: Help with this ElectroHydraulic Power steering pump?
Replies: 5
Views: 297

Re: Help with this ElectroHydraulic Power steering pump?

It also looks similar to the Ford Galaxy pump BG91-3K514-AC.

I found some info for a Ford pump here. https://www.diyelectriccar.com/threads/ ... ump.88303/
by royhen99
Thu Mar 28, 2024 11:09 pm
Forum: Toyota/Lexus
Topic: Gen 3 Prius Transaxle P410 Makes Clunky Noise.
Replies: 26
Views: 1657

Re: Gen 3 Prius Transaxle P410 Makes Clunky Noise.

Did today's testing unequivocally show that the inverter temperature is signed 8 bit?

If so then the GS450 tmphs/temp_inv_water still needs fixing

temp_inv_water=int8_t(mth_data[42]);
by royhen99
Thu Mar 21, 2024 2:19 pm
Forum: General
Topic: Battery packs with 3p
Replies: 15
Views: 1439

Re: Battery packs with 3p

Tachopis wrote: Thu Mar 21, 2024 1:09 pm Therefore, a 3P configuration will have a 50% greater capacity than a 2P configuration
the part you have missed is it also comes with a 50% increase in size and weight. Tom's data above shows it's possible to get the same or better performance with 2P configuration.
by royhen99
Fri Mar 15, 2024 4:42 pm
Forum: Mitsubishi
Topic: I just bought a Mitsubishi Outlander charger. - Now What?
Replies: 30
Views: 2065

Re: I just bought a Mitsubishi Outlander charger. - Now What?

That's the rear inverter to motor cable.
That price is very cheap for both cables. Was this listing for just one of the cables and did you get the right one?
by royhen99
Sun Mar 10, 2024 11:18 pm
Forum: Getting Started
Topic: Setting Up CAN reader - STM32 Nucleo board
Replies: 9
Views: 803

Re: Setting Up CAN reader - STM32 Nucleo board

You can not just change board type and expect it to compile . The STM32 core library does not support can so an external library is needed, ( or write your own ). Even then a lot of changes are needed to get it to work.

Non of the libraries I am familar with support STM32F334.
by royhen99
Thu Mar 07, 2024 1:55 pm
Forum: Mitsubishi
Topic: What do you need an Outlander HV Junction box for?
Replies: 2
Views: 492

Re: What do you need an Outlander HV Junction box for?

It's for connecting the heater and a DC-DC converter for heated screens or DC-AC converter.
by royhen99
Tue Mar 05, 2024 10:12 pm
Forum: Projects
Topic: ISA Shunt With ZombieVerter VCU [FINISHED]
Replies: 14
Views: 1394

Re: ISA Shunt With ZombieVerter VCU [FINISHED]

The SPI connections are on the connector marked "SPI", just look up Arduino Due pinout for actual pins.

If you intend to run Savvycan then you only need one or two CAN transceivers, either a MCP2551 or SN65HVD230.
CANRX - CAN0 RX, CANTX - CAN0 TX.
DAC2 - CAN1 RX, Pin 53 - CAN1 TX.