Toyota Prius Open Transaxle Motor Action
Gen 3 Prius Transaxle P410 Makes Clunky Noise.
- Gregski
- Posts: 2688
- Joined: Tue Sep 14, 2021 10:28 am
- Location: Sacramento, California
- Has thanked: 494 times
- Been thanked: 911 times
- Contact:
Re: Gen 3 Prius Transaxle P410 Makes Clunky Noise.
"I don't need to understand how it works, I just need to understand how to make it work!" ~ EV Greg
Re: Gen 3 Prius Transaxle P410 Makes Clunky Noise.
I've found something odd in the code I think you are using: (this? https://github.com/damienmaguire/Stm32- ... GS450H.cpp )
Line 580:
//mg2
htm_data[31]=(mg2_torque)&0xFF; //positive is forward
htm_data[32]=((mg2_torque)>>8);
htm_data[37]=htm_data[26];
htm_data[38]=htm_data[27];
The last two lines make htm_data[37-38] equal htm_data[26-27], which are always zero?!