Searched defs:LSB (Results 1 – 2 of 2) sorted by relevance
156 #define GET_BITFIELD(var, MSB, LSB) ((uint8_t)((var) << (7 - (MSB))) >> ((7 - (MSB)) + (LSB))) argument160 #define SET_BITFIELD(var, MSB, LSB, value) ((uint8_t)(var) = \ argument165 #define CLR_BITFIELD(var, MSB, LSB) ((uint8_t)(var) &= (uint8_t)(~(BIT_MASK((MSB) - (LSB))<<(LSB)… argument
103 #define LSB(n) ((n)&0xff) macro