mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_HAL_Linux: set bw_in_bytes_per_second default to 10/100Mbps connection
This commit is contained in:
parent
b3f2945dcb
commit
60a38a0ab1
@ -443,3 +443,10 @@ uint64_t UARTDriver::receive_time_constraint_us(uint16_t nbytes)
|
|||||||
}
|
}
|
||||||
return last_receive_us;
|
return last_receive_us;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint32_t UARTDriver::bw_in_bytes_per_second() const
|
||||||
|
{
|
||||||
|
// if connected, assume at least a 10/100Mbps connection
|
||||||
|
const uint32_t bitrate = (_connected && _ip != nullptr) ? 10E6 : _baudrate;
|
||||||
|
return bitrate/10; // convert bits to bytes minus overhead
|
||||||
|
};
|
@ -54,6 +54,8 @@ public:
|
|||||||
*/
|
*/
|
||||||
uint64_t receive_time_constraint_us(uint16_t nbytes) override;
|
uint64_t receive_time_constraint_us(uint16_t nbytes) override;
|
||||||
|
|
||||||
|
uint32_t bw_in_bytes_per_second() const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
AP_HAL::OwnPtr<SerialDevice> _device;
|
AP_HAL::OwnPtr<SerialDevice> _device;
|
||||||
bool _console;
|
bool _console;
|
||||||
|
Loading…
Reference in New Issue
Block a user