Thanks for the help. However, after looking over this and using the following code in an SMAC application, it's still not working. Am I not outputting my signal to any of the pins? I thought it would output to the TMR1 pin on my SRB board, but I'm not getting anything. Again, any help would be appreciated
void PWM_Output()
{
SetCtrlVal(1,0x3006); /* Run counter */
}
void PWM_Init()
{
SetCntrVal(1,0); /* Reset counter */
/* TMRA1_SCTRL: TCF=0,TCFIE=0,TOF=0,TOFIE=0,IEF=0,IEFIE=0,IPS=0,INPUT=0,
Capture_Mode=0,MSTR=0,EEOF=0,VAL=0,FORCE=1,OPS=0,OEN=1 */
SetSctrlVal(1,0x05);
SetComp1Val(1,1500); // Store initial value to the duty-compare register; sets compare value (COMP1) to 1500
/* TMRA0_CTRL: CM=1,PCS=8,SCS=0,ONCE=0,LENGTH=0,DIR=0,Co_INIT=0,OM=6 */
}