Open knchip opened 12 years ago
The original Arduino code doesn't support printf. So it's kind of fluke that these are working. Do we want this feature to be supported officially by ChipKit?
I prefer to have this features due to the following reasons.
Hi, if we use fprintf(stderr , "hello"); it compiles fine for chipKIT max32, but fails for UNO32. It looks to me that, since UNO has only 2 serial ports and stdio.h has definition for stderr as #define stderr (&_iob[2]) we get the error.
if we undef stderr and redefine , the compileation is successfull. Thanks, Narayanan