"U" is when the AC cannot determine what the timer should be on or off. It is usually harmless and will clear itself. One example...
Assume that the tank is 76.5 F and you have the following 2 lines:
If Temp < 76.0 Then HET ON
If Temp > 77.0 Then HET Off
When you reset the controller (e.g., update program, run, etc). Both statements will be false (because temp is not < 76 and not > 77) so the controller leaves HET as "u". It can be on or off (really) and it doesn't matter. As time passes the temp will rise/lower and one statement will become true. Once a statement is true the device on/off will be known and the "U" will go away.
Make sense?