We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e804ad8 commit 155f259Copy full SHA for 155f259
cores/arduino/avr/dtostrf.c
@@ -20,6 +20,8 @@
20
#include <stdio.h>
21
22
char *dtostrf (double val, signed char width, unsigned char prec, char *sout) {
23
+ asm(".global _printf_float");
24
+
25
char fmt[20];
26
sprintf(fmt, "%%%d.%df", width, prec);
27
sprintf(sout, fmt, val);
0 commit comments