X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fmacros.h;h=4f77b21e6c6c7227492156dea2329e59b9e6f6cf;hb=7866d885e4eb4e5e0feead374294c8d734507fc7;hp=0dad9d393effcb3f44abfa7aa85264c342a27206;hpb=3869cb55efcc879e7df05b785ce9759cb59b5836;p=bertos.git diff --git a/bertos/cfg/macros.h b/bertos/cfg/macros.h index 0dad9d39..4f77b21e 100644 --- a/bertos/cfg/macros.h +++ b/bertos/cfg/macros.h @@ -158,7 +158,7 @@ * Reverse the bits contained in b (LSB becomes the MSB and so on). * \note \a b is evaluated twice */ -#define REVERSE(b) \ +#define REVERSE_UINT8(b) \ ((uint8_t)((((b) * 0x0802UL & 0x22110UL) | ((b) * 0x8020UL & 0x88440UL)) * 0x10101UL >> 16)) #ifndef BV