--------------------
tmp = 65536 - (10 * AxisAngle + 460);   //with a 12MHz crystal
TH = tmp / 256;                         //Derive the upper 8-bit from "tmp"
TL = tmp - TH * 256;                    //Derive the lower 8-bit from "tmp"
--------------------