My old project have some struct, which is not displayed correctly. BitFields inside are not displayed:
Display All
What is wrong?
Source Code
- struct BatStruct{
- enum BatMode Mode;
- int32_t V,I;
- int32_t Vu,Iu;
- uint16_t Vups,Vudc;
- unsigned SwPs:1;
- unsigned SwDc:1;
- unsigned SwG1:1;
- unsigned SwG2:1;
- unsigned RelayOut:1;
- unsigned RelayPol:1;
- unsigned RelayDs:1;
- unsigned PcbHardwareErrorMcu:1;
- unsigned PcbHardwareErrorPower:1;
- uint32_t EI2C1,EI2C2,EI2C3;
- };
What is wrong?