|
Re: Multiple Interrupts
Quote:
Originally Posted by Kevin Watson
I can't really make out what's going on, but I did see that you were calling printf() in your interrupt service routine, which can cause problems. A much better quick-and-dirty way to signal the outside world is to just send a single character using Write_Serial_Port_One(), which executes much faster. It's as simple as this:
Write_Serial_Port_One('*');
Fix this one problem and let us know if it works.
-Kevin
|
I originally had no printf's and was having the problem. Then added them in to see additionally what could have been causing problems.
__________________
2010 to Present, Scorekeeper/Field Power Volunteer for FRC/FTC/FLL
2005 - 2010, Team 171 College Mentor
2002 - 2005, Team 930 Student
|