fixed UB on startup
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
This commit is contained in:
parent
f041655378
commit
773e1c9ecc
@ -107,10 +107,10 @@ class ImtqHandler : public DeviceHandlerBase {
|
|||||||
PoolEntry<uint32_t> statusUptime = PoolEntry<uint32_t>({0});
|
PoolEntry<uint32_t> statusUptime = PoolEntry<uint32_t>({0});
|
||||||
|
|
||||||
PoolEntry<int32_t> mgmCalEntry = PoolEntry<int32_t>(3);
|
PoolEntry<int32_t> mgmCalEntry = PoolEntry<int32_t>(3);
|
||||||
PoolEntry<int16_t> dipoleXEntry = PoolEntry<int16_t>(0, false);
|
PoolEntry<int16_t> dipoleXEntry = PoolEntry<int16_t>({0}, false);
|
||||||
PoolEntry<int16_t> dipoleYEntry = PoolEntry<int16_t>(0, false);
|
PoolEntry<int16_t> dipoleYEntry = PoolEntry<int16_t>({0}, false);
|
||||||
PoolEntry<int16_t> dipoleZEntry = PoolEntry<int16_t>(0, false);
|
PoolEntry<int16_t> dipoleZEntry = PoolEntry<int16_t>({0}, false);
|
||||||
PoolEntry<uint16_t> torqueDurationEntry = PoolEntry<uint16_t>(0, false);
|
PoolEntry<uint16_t> torqueDurationEntry = PoolEntry<uint16_t>({0}, false);
|
||||||
power::Switch_t switcher = power::NO_SWITCH;
|
power::Switch_t switcher = power::NO_SWITCH;
|
||||||
|
|
||||||
uint8_t commandBuffer[imtq::MAX_COMMAND_SIZE];
|
uint8_t commandBuffer[imtq::MAX_COMMAND_SIZE];
|
||||||
|
Loading…
Reference in New Issue
Block a user