It's just got a high stall converter (I think), not slipping. That's why it makes CVT noises until it shifts when you firewall it. I think personally they went high stall to protect the drivetrain both on and off-road, and maybe even to protect the engine from ending up in high-load-low-rpm situations.Is this the sensation I get of a slipping trans? I swear the first time I drove it, I thought it had trans issues.
This, its comical, people hate CVTs and Toyota managed to make an 8 speed CVT…I really think it has something to do with the comically high stall converter these things have. It makes it fast for sure when you get on it, but Toyota has gotta make em lock up in 4Hi way sooner than they do.
On the street when you punch it, it spins to like 3000RPM for 2-3 seconds before it locks LOL it's cool but if the truck was slower and shifted sooner I wouldn't mind..
Edit: Does MTS ever request that the driver switches to 4Lo? Depending on incline? Descent control I can see it wanting 4Lo. Not sure about climbs though.
When you drive normally though, 1/4 throttle to 1/2 throttle it shifts fine, like a conventional auto.This, its comical, people hate CVTs and Toyota managed to make an 8 speed CVT…
When you drive normally though, 1/4 throttle to 1/2 throttle it shifts fine, like a conventional auto.
I was riding with a friend and he noticed the high stall too so I don't think its all in our heads ?
There's not much besides the torque converter that makes heat in an auto so ?![]()
I will say that I don’t mind the transmission behavior most of the time but I do agree with the high stall speed. I put the TRD exhaust on my truck and it’s become much more noticeable when the windows are down. Especially if you’re driving through a tight street and the exhaust is bouncing off of homes/cars. The exhaust sounds good for an I4 otherwise but nothing sounds good when the rpms stick and it drones. For this reason I may end up putting back on the stock pipe some day. We’ll seeWonder if this can be tuned out without issues... Its extremely aggravating for me since I have a TRD PRO and the exhaust is loud... so the exhaust just remains at the same pitch and volume like and old clunker when accelerating.
Toyota are you listening?
that is exactly right… transmission sticking + exhaust kills the fun.I will say that I don’t mind the transmission behavior most of the time but I do agree with the high stall speed. I put the TRD exhaust on my truck and it’s become much more noticeable when the windows are down. Especially if you’re driving through a tight street and the exhaust is bouncing off of homes/cars. The exhaust sounds good for an I4 otherwise but nothing sounds good when the rpms stick and it drones. For this reason I may end up putting back on the stock pipe some day. We’ll see
Just doing a quick Google search, and it seems that they're accessible via TechStream, so yea pretty much lol.Wow - so ROBs are secret stashes where our trucks hide things so dealers can blow us off.
Makes you wonder what is in my truck's ROBs, which I assume only a dealer has access to.
I have a 2024 TRD Off-Road with the tow package. Had it in Colorado two weeks ago and experienced this issue going up to the peak of Imogene Pass. I was in 4H and the trans temp was slowly increasing all the way up the trail. It never got to a warning message, but I did stop a couple of times to let it cool down in the hopes of not getting a message.I saw some snippet that it doesn't happen on trucks with the tow package. Anyone with the overheating have the tow package?
My trans temp went up while offroad in 4Hi on the stock SR wheels 245/70/17Maybe I’ve missed it but I’m curious to know if you guys experiencing trans overheating have bigger and heavier tires.
#include <iostream>
class Vehicle {
public:
bool isInclinometerAbove5Degrees(float inclinometer) {
return inclinometer > 5.0;
}
bool isSpeedBelow20Mph(float speed) {
return speed < 20.0;
}
bool isTransmissionTempAbove190Degrees(float temp) {
return temp > 190.0;
}
void useGears(float inclinometer, float speed, float transmissionTemp) {
if (isInclinometerAbove5Degrees(inclinometer) &&
isSpeedBelow20Mph(speed) &&
isTransmissionTempAbove190Degrees(transmissionTemp)) {
std::cout << "Use gears 1-3" << std::endl;
} else {
std::cout << "Conditions not met for using gears 1-3" << std::endl;
}
}
};
int main() {
Vehicle vehicle;
float inclinometer = 6.0; // Example value
float speed = 15.0; // Example value
float transmissionTemp = 195.0; // Example value
vehicle.useGears(inclinometer, speed, transmissionTemp);
return 0;
}