Quote:
|
Originally Posted by pagemauck
printf ( "%d/n", " pwm01 = ", pwm01 );
printf ( "%d/n", " rc_dig_01 = ", rc_dig_01 );
|
Two things:
First, that doesn't look like proper use of the printf function. I think you meant to write this:
Code:
printf ( "pwm01 = %d/n", pwm01 );
printf ( "rc_dig_01 = %d/n", rc_dig_01 );
Is that
really the code you are using? Because I wouldn't think that what you have shown above would even compile.
Secondly, you still haven't given very much information. You'll notice that all the replies so far (including my own) have been guesses and speculation. Please post the whole function at a minimum. However, if you post all the code, I guarantee that someone here will fix your problem for you right away.