Recv: T:175.89 /0.00 B:17.21 /0.00 @:0 B@:0
This tells me that the current extruder temperature is 175.89, with a setpoint of 0. The current bed temperature is 17.21, with a setpoint of zero. The PWM value of the extruder heater is 0, and the PWM value of the bed heater is zero.
Here's a temperature report while I'm trying to heat to 240:
Recv: T:45.23 /240.00 B:14.11 /0.00 @:127 B@:0
This shows me that I'm trying to get my extruder up to 240, but it's only at 45.23. However, the heater is currently set to 127, which is the maximum value established in the firmware as PID_MAX.
In contrast, during autotuning, the hotend heats up a a PWM value of one half of PID_MAX. If PID_MAX is set to 127, heating during autotuning will be at 63. If PID_MAX is set too low, you will never be able to get up to temperature for autotuning.
In my case, I had PID_FUNCTIONAL_RANGE set to 10, which means that if the temperature is more than 10 degrees away from the setpoint, the controller will be in bang-bang mode (either PID_MAX or 0). If the temperature is changing quickly, the temperature may get out of the PID_FUNCTIONAL_RANGE before the PID controller settles. By looking at my temperature messages during heating, I could see that the PID controller never settled. In order to give the controller time to adapt, I increased the PID_FUNCTIONAL_RANGE from 10 to 30. At that point, I could control the temperature of the extruder, although it was still not as tight a control as I would prefer.
I insulated the hot end block to decrease the cooling rate and slow the system down a little bit. That helped somewhat.
Bottom line -- my printer is now functional. But there is still more variability in the extrusion temperature than I would like. I'll keep working on it.