Hello everyone,I have a typedef structure defined as follows:typedef struct {
uint8_t status:4; // Holds state machine state
uint8_t busy:1; // Indicates that transaction is (not) in progress
uint8_t ready:1; // Indicates that transactio..