View Single Post
  #12   Spotlight this post!  
Unread 08-02-2007, 20:10
937Programmers 937Programmers is offline
Registered User
AKA: Phil M - Programming Leader
FRC #0937 (North Stars)
Team Role: Programmer
 
Join Date: Feb 2007
Rookie Year: 2006
Location: Kansas
Posts: 7
937Programmers is an unknown quantity at this point
Re: PWMs not outputting in Autonomous

You mean like this?
Code:
PWM(pwm01,pwm02,pwm05,pwm08,pwm13,pwm14,pwm15,pwm16);
Or this?
Code:
PWM(pwm01,pwm02,pwm05,pwm08);
PWM(pwm13,pwm14,pwm15,pwm16);
If we do the first one, then there's an error saying there's too many calls in the argument. The second one doesn't work either because apparently the PWM() function only affects 13-16. I think I have an idea, though, and I'll see if it works.

Edit: Yeah, I didn't think it would. I thought the problem may have been PWM vs. Generate_Pwms, but that's not the issue.

Last edited by 937Programmers : 08-02-2007 at 20:14.