Przeglądaj źródła

use float version of fcvt

teensy4-core
Frank 9 lat temu
rodzic
commit
45468b4ba4
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      teensy3/nonstd.c

+ 1
- 1
teensy3/nonstd.c Wyświetl plik

@@ -72,7 +72,7 @@ char * dtostrf(float val, int width, unsigned int precision, char *buf)
const char *s, *e;
char *p;

s = fcvt(val, precision, &decpt, &sign);
s = fcvtf(val, precision, &decpt, &sign);
if (precision == 0 && decpt == 0) {
s = (*s < '5') ? "0" : "1";
reqd = 1;

Ładowanie…
Anuluj
Zapisz