Now I'm really lost haha. My problem is this. I have the arduino board controlling a motor using PWM. I'm using timer 2, pin 3; a 16 bit timer. I have the prescaler value for the timer set to 1 meaning a PWM frequency of 62500. (i used this Arduino Playground - TimerPWMCheatsheet). The frequency of the PWM signal is fast enough but, we need a higher counter resolution to better control the duty cycle. In this case, we don't want a duty cycle from 0 to 255, but something larger, hence I said 16 bit because I'm assuming that's the cap. On the atmega 2560 datasheet, the MAX value for the counter is 0xFFFF which is what I want to set it to. But I don't know how, which is what I'm inquiring about.