Quote:
|
Originally Posted by Alan Anderson
That doesn't look right at all. Try this instead:
Code:
printf(" pwm01 = %d/n", pwm01);
printf(" rc_dig_01 = %d/n", rc_dig_01);
|
On top of that you want to use \n instead of /n.
Code:
printf(" pwm01 = %d\n", pwm01);
printf(" rc_dig_01 = %d\n", rc_dig_01);
Depending on what you're using to view the output, you may need to substitute a \r for the \n.