AP_HAL: make receive_time_constraint_us non-const

needed to use available()
This commit is contained in:
Andrew Tridgell 2018-05-21 13:48:04 +10:00
parent ce73918873
commit b887a1e893

View File

@ -84,5 +84,5 @@ public:
A return value of zero means the HAL does not support this API
*/
virtual uint64_t receive_time_constraint_us(uint16_t nbytes) const { return 0; }
virtual uint64_t receive_time_constraint_us(uint16_t nbytes) { return 0; }
};