소스 검색

Merge pull request #89 from Defragster/master

Fix for dtostrf on floats under zero
main
Paul Stoffregen 9 년 전
부모
커밋
0a94f680eb
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. +9
    -0
      teensy3/nonstd.c

+ 9
- 0
teensy3/nonstd.c 파일 보기

@@ -94,6 +94,15 @@ char * dtostrf(float val, int width, unsigned int precision, char *buf)
*p++ = '0';
*p++ = '.';
}
else if (decpt < 0 && precision > 0) {
*p++ = '0';
*p++ = '.';
e++;
while ( decpt < 0 ) {
decpt++;
*p++ = '0';
}
}
while (p < e) {
*p++ = *s++;
if (p == e) break;

Loading…
취소
저장