OR可以用来将二进制位设置为1
#define ON = 000111; x = x | ON; //设置x的低3位为1
AND可以将二进制位设置为0
#define OFF = 1000; n = n & OFF; //将低3位设置为0