Procházet zdrojové kódy

Fix compilation error with recent newlib versions because random() return value doesn't match

teensy4-core
Alexander Shtuchkin před 8 roky
rodič
revize
ff83ba5546
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +1
    -1
      teensy3/WMath.cpp
  2. +1
    -1
      teensy3/WProgram.h

+ 1
- 1
teensy3/WMath.cpp Zobrazit soubor

@@ -12,7 +12,7 @@ void srandom(uint32_t newseed)
seed = newseed;
}

uint32_t random(void)
int32_t random(void)
{
int32_t hi, lo, x;


+ 1
- 1
teensy3/WProgram.h Zobrazit soubor

@@ -50,7 +50,7 @@ void tone(uint8_t pin, uint16_t frequency, uint32_t duration = 0);
void noTone(uint8_t pin);

// WMath prototypes
uint32_t random(void);
int32_t random(void);
uint32_t random(uint32_t howbig);
int32_t random(int32_t howsmall, int32_t howbig);
void randomSeed(uint32_t newseed);

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