AP_HAL_PX4: return uart link bandwidth

This commit is contained in:
Peter Barker 2018-04-06 11:58:59 +10:00 committed by Peter Barker
parent d2cf065fdf
commit aed3527fb7

View File

@ -58,7 +58,11 @@ public:
A return value of zero means the HAL does not support this API
*/
uint64_t receive_time_constraint_us(uint16_t nbytes) override;
uint32_t bw_in_kilobytes_per_second() const override {
return _baudrate/(9*1024);
}
private:
const char *_devpath;
int _fd;