File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1235,10 +1235,11 @@ struct BindSensorOutputResponse
1235
1235
1236
1236
using TipStatusQueryRequest = Empty<MessageId::get_tip_status_request>;
1237
1237
1238
+ // NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
1238
1239
struct PushTipPresenceNotification
1239
1240
: BaseMessage<MessageId::tip_presence_notification> {
1240
- uint32_t message_index = 0 ;
1241
- uint8_t ejector_flag_status = 0 ;
1241
+ uint32_t message_index;
1242
+ uint8_t ejector_flag_status;
1242
1243
can::ids::SensorId sensor_id{};
1243
1244
1244
1245
template <bit_utils::ByteIterator Output, typename Limit>
@@ -1474,10 +1475,11 @@ struct SetGripperErrorToleranceRequest
1474
1475
1475
1476
using GetMotorUsageRequest = Empty<MessageId::get_motor_usage_request>;
1476
1477
1478
+ // NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
1477
1479
struct GetMotorUsageResponse
1478
1480
: BaseMessage<MessageId::get_motor_usage_response> {
1479
- uint32_t message_index = 0 ;
1480
- uint8_t num_keys = 0 ;
1481
+ uint32_t message_index;
1482
+ uint8_t num_keys;
1481
1483
struct __attribute__ ((__packed__)) UsageValueField {
1482
1484
uint16_t key;
1483
1485
uint16_t len;
You can’t perform that action at this time.
0 commit comments