Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code for an Arduino sketch:

#include <LiquidCrystal.h>

LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
static FILE lcdout = {0} ;

static int lcd_putchar(char ch, FILE* stream)
{
    lcd.write(ch) ;
    return (0) ;
}

void setup() {
  lcd.begin(16, 2);
  fdev_setup_stream (&lcdout, lcd_putchar, NULL, _FDEV_SETUP_WRITE);
}

void loop() 
{
  stdout = &lcdout;
  printf("%.2f Volts", 2.0);
}

The problem comes at the last line of the code. This should print out "2.00 Volts" but instead, it prints "? Volts" (a question mark instead of the actual float value). If I try to format an integer, this works great.

So basically, if I replace the printf line with the following, it will work properly:

printf("%d Volts", 2); //prints correctly "2 Volts"

Any idea what's the problem ?

share|improve this question
A dumbed-down stdlib that can't handle floating point conversions? – Daniel Fischer Jan 3 at 20:39
@DanielFischer Exactly. – H2CO3 Jan 3 at 20:40

2 Answers

up vote 1 down vote accepted

The GNU toolchain for AVRs (which is included with the Arduino IDE) uses a "minified" version of the C standard library by default, in which, for example, the floating-point support is reduced/taken away from formatted I/O functions (just in order printf() to fit in the few kBytes long storage of the chip.)

If you want this to work, you have to link agains another library containing the normal version of printf(), by using the -Wl,-u,vfprintf -lprintf_flt linker flags.

share|improve this answer
So I'll have to provide this linker arguments when I link my code, or I'll have to compile the library again and provide this linker arguments ? – Nicolae Surdu Jan 3 at 21:43
@NicolaeSurdu You don't have to recompile the library, you have to provide these flags when you're linking your own code. – H2CO3 Jan 3 at 21:47
Thank you very much for your support! – Nicolae Surdu Jan 3 at 22:16

From avr-libc documentation:

If the full functionality including the floating point conversions is required, the following options should be used:

-Wl,-u,vfprintf -lprintf_flt -l

Note that if your MCU doesn't have any floating point support, you should try to avoid floating point operations completely. The floating point operations will be done in software which is very inefficient and needs a lot a flash memory.

share|improve this answer
You don't even need -lprintf_min IIRC (it has been a while I played around with AVRs), libc.a contains the minified library. – H2CO3 Jan 3 at 20:44
@H2CO3 I removed the line. I also think that if you don't use the full printf_flt, you don't have any floating point support with printf. – ouah Jan 3 at 20:46
Yes, that's what I'm saying essentially. You'll always get ? instead. – H2CO3 Jan 3 at 20:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.