}fifo_conf;
union {
struct {
- uint32_t data: 8; /*The register represent the byte data read from rx_fifo when use apb fifo access*/
- uint32_t reserved8: 24;
+ uint8_t data; /*The register represent the byte data read from rx_fifo when use apb fifo access*/
+ uint8_t reserved[3];
};
uint32_t val;
}fifo_data;
typedef volatile struct {
union {
struct {
- uint32_t rw_byte: 8; /*This register stores one byte data read by rx fifo.*/
- uint32_t reserved8: 24;
+ uint8_t rw_byte; /*This register stores one byte data read by rx fifo.*/
+ uint8_t reserved[3];
};
uint32_t val;
}fifo;