瀏覽代碼

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 查看文件



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


// Extract digits from the remainder one at a time // Extract digits from the remainder one at a time

Loading…
取消
儲存