소스 검색

Merge pull request #91 from FrankBoesing/patch-5

The buffer for digits after the decimal-point is on the stack, so i t…
main
Paul Stoffregen 9 년 전
부모
커밋
c241352f9e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      teensy3/Print.cpp

+ 1
- 1
teensy3/Print.cpp 파일 보기

@@ -295,7 +295,7 @@ size_t Print::printFloat(double number, uint8_t digits)

// Print the decimal point, but only if there are digits beyond
if (digits > 0) {
uint8_t n, buf[8], count=1;
uint8_t n, buf[16], count=1;
buf[0] = '.';

// Extract digits from the remainder one at a time

Loading…
취소
저장