At the top of the TFC.cpp file, there are defines that set the limits of the servo in terms of pulse width.
If you look back in the history here (I can't find it at the moment), I described how I used the buttons and an oscilloscope to generate the official center at 1.5mS, connect the steering linkage, and then find the extremes of the linkage in terms of pulse time. After getting those times, I plugged them back into the defines at the top of TFC.cpp. Once that's done, -1.0 to 1.0 goes from steering limit to steering limit with no servo buzzing.
Here are the final defines I ended up with:
#define FTM1_CLK_PRESCALE 6// Prescale Selector value - see comments in Status Control (SC) section for more details
#define SERVO_DEFAULT_PERIOD (float)(.020) // Desired Frequency of PWM Signal - Here 50Hz => 20ms period
// use these to dial in servo steering to your particular servo
#define SERVO_MIN_PULSE_WIDTH_DEFAULT (float)(.00115) // The number here should be be *pulse width* in seconds to move servo to its left limit
#define SERVO_MAX_PULSE_WIDTH_DEFAULT (float)(.00185) // The number here should be be *pulse width* in seconds to move servo to its left limit