Dear TI,
I am studying datasheet of CRC. I want to confirm the mean of "byte write" which is described in datasheet.
If now we have a 32 bit register, Abc, that is divided to four parts, O(1 bit), E(8 bits), F(4 bits), Reserve(19 bits).
Abc = 0xFFFFFFFF;
Abc->O = 1;
Abc->E = 0xFF;
Abc->F = 0xF;
The above write instructions, which are meet to "byte writes"?
Thanks a lot.