Procházet zdrojové kódy

Merge pull request #100 from expipiplus1/fix-casting

Fix compile error with clang casting long* to int*
teensy4-core
Paul Stoffregen před 9 roky
rodič
revize
2765de0801
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      teensy3/Print.cpp

+ 3
- 1
teensy3/Print.cpp Zobrazit soubor

@@ -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);

Načítá se…
Zrušit
Uložit