AP_HAL: make bools to use single bit in CANTxItem
This commit is contained in:
parent
72cf040f81
commit
22ab426cf2
@ -113,11 +113,11 @@ public:
|
||||
uint64_t deadline = 0;
|
||||
CANFrame frame;
|
||||
uint32_t index = 0;
|
||||
bool loopback = false;
|
||||
bool abort_on_error = false;
|
||||
bool aborted = false;
|
||||
bool pushed = false;
|
||||
bool setup = false;
|
||||
bool loopback:1;
|
||||
bool abort_on_error:1;
|
||||
bool aborted:1;
|
||||
bool pushed:1;
|
||||
bool setup:1;
|
||||
|
||||
bool operator<(const CanTxItem& rhs) const
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user