printf()s that take place in user_autonomous_code are not showing up on my terminal emulator. I’m using the dipswitches to force it into autonomous mode.
The code compiles fine with no errors or warnings, and I’m including <stdio.h>
Posting your code will help us help you. As it is, we have no idea where your printfs are in your code. If you’re calling the printfs in the fast loop instead of the slow loop, then the serial port is getting swamped and isn’t having a chance to output the strings.
Ah, my mistake, I am using double quotes. Astronouth just informed me that I need to include the newline or else it won’t flush. I’ll give that a shot tomorrow.