Quote:
|
Originally Posted by pagemauck
printf ( "%d/n", " pwm01 = ", pwm01 );
printf ( "%d/n", " rc_dig_01 = ", rc_dig_01 );
|
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);
Also, make sure you're not trying to do printf() inside any of the interrupt service routines.