소스 검색

Merge pull request #100 from expipiplus1/fix-casting

Fix compile error with clang casting long* to int*
main
Paul Stoffregen 9 년 전
부모
커밋
2765de0801
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      teensy3/Print.cpp

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

@@ -183,7 +183,9 @@ size_t Print::printNumberDec(unsigned long n, uint8_t sign)

p = buf + (sizeof(buf));
do {
divmod10_v2(n, &n, &digit);
uint32_t div;
divmod10_v2(n, &div, &digit);
n = div;
//divmod10_asm(n, digit, t1, t2, c3333);
*--p = digit + '0';
} while (n);

Loading…
취소
저장