I have the following type:
我有以下类型:
My_Union_t Data;
typedef union My_Union {
byte Byte;
struct {
byte b0:1;
byte b1:1;
byte b2:1;
byte b3:1;
byte b4:1;
byte b5:1;
byte b6:1;
byte b7:1;
} Bits;
} My_Union_t;
My_Union