At 11:58 11-10-05 +0200, you wrote: >Hi mspgcc users. > >(NEWBIE ALERT!!!) > >We are a university group from Denmark who are working on the msp430f149 >this term. We have the option to use the IAR compiler but as we all are >Linux users we prefer gcc. >IAR has a printf function which seems not to be available in mspgcc. >We've searched the mailist archive but didn't seem to find what we were >looking for. Does anyone have a printf implementation?
printf comes standard with GCC if you include stdio.h. I recommend snprintf() if you want to print something into a buffer. If you write your own putchar function, you can send the output of printf anywhere you like. Nico Coesel