Skip to content

Commit

Permalink
AP_CANManager: use 32 bit timeout for write_aux_frame
Browse files Browse the repository at this point in the history
Saves a handful of bytes. 71 minutes ought to be enough for anybody!
  • Loading branch information
tpwrules committed Oct 14, 2024
1 parent b7f9a16 commit cc8bac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_CANManager/AP_CANDriver.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ class AP_CANDriver
virtual bool add_11bit_driver(CANSensor *sensor) { return false; }

// handler for outgoing frames for auxillary drivers
virtual bool write_aux_frame(AP_HAL::CANFrame &out_frame, const uint64_t timeout_us) { return false; }
virtual bool write_aux_frame(AP_HAL::CANFrame &out_frame, const uint32_t timeout_us) { return false; }
};

0 comments on commit cc8bac1

Please sign in to comment.