Procházet zdrojové kódy

Add emulation for AVR util/parity.h

teensy4-core
PaulStoffregen před 10 roky
rodič
revize
b98d2d6aaf
1 změnil soubory, kde provedl 13 přidání a 0 odebrání
  1. +13
    -0
      teensy3/util/parity.h

+ 13
- 0
teensy3/util/parity.h Zobrazit soubor

@@ -0,0 +1,13 @@
#ifndef _UTIL_PARITY_H_
#define _UTIL_PARITY_H_

static inline uint8_t parity_even_bit(uint8_t x) __attribute__((pure, always_inline, unused));
static inline uint8_t parity_even_bit(uint8_t x)
{
x ^= x >> 1;
x ^= x >> 2;
x ^= x >> 4;
return x & 1;
}

#endif

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