Hermann Kraus wrote:
On Fri, 09 Apr 2004 14:09:59 +0200, Chris Liechti <cliec...@gmx.net> wrote:
%f is not implemented in the *printf function(s) in mspgcc. you have
to supply your own implementation if you want that format.
one of the reasons is that floats are rarely used and the format
implementation in *printf would use too much code for these users.
What do you think about providing different versions of printf like in
avr-libc?
That would solve the problem for the users who need floats and it
wouldn't affect
the others.
yep, you already can link your own implementation of a printf or
vuprintf (that function is used in all the other *printf functions)
its just that nobody made an alternative implementation so far.
chris