Skip to content

Commit

Permalink
fix lint?
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Jan 23, 2024
1 parent 6da57f0 commit 98c2714
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/can/core/messages.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1237,8 +1237,8 @@ using TipStatusQueryRequest = Empty<MessageId::get_tip_status_request>;

struct PushTipPresenceNotification
: BaseMessage<MessageId::tip_presence_notification> {
uint32_t message_index;
uint8_t ejector_flag_status;
uint32_t message_index = 0;
uint8_t ejector_flag_status = 0;
can::ids::SensorId sensor_id{};

template <bit_utils::ByteIterator Output, typename Limit>
Expand Down Expand Up @@ -1476,8 +1476,8 @@ using GetMotorUsageRequest = Empty<MessageId::get_motor_usage_request>;

struct GetMotorUsageResponse
: BaseMessage<MessageId::get_motor_usage_response> {
uint32_t message_index;
uint8_t num_keys;
uint32_t message_index = 0;
uint8_t num_keys = 0;
struct __attribute__((__packed__)) UsageValueField {
uint16_t key;
uint16_t len;
Expand Down

0 comments on commit 98c2714

Please sign in to comment.