|
Re: Default Code and printf
Using the MPLAB simulator you won't be able to do printf's. There's no process setup to complete the serial connection required. The printf's will only work from the EDU or FRC.
As Brian said, the note about this warning is in the Readme.txt file in the FrcCode2005v2.4 folder.
You can use:
-nw=2066
to suppress the printf warnings.
In MPLAB go to Project -> Build Options... -> Project
then the MPLAB C18 tab
click the checkbox for "Use alternate settings"
and add it to the line underneath, e.g.,
-D_FRC_BOARD -nw=2066
__________________
"Rationality is our distinguishing characteristic - it's what sets us apart from the beasts." - Aristotle
Last edited by Mark McLeod : 22-01-2005 at 16:47.
|