Fix UART baudrate

Set standard baudrate (460800) instead of non-standard (500000).
This enables opening of serial device under FreeBSD without error.
This commit is contained in:
porsolic 2023-02-06 19:30:58 +01:00 committed by Marek Kraus
parent a67ab9d218
commit 7fb2cc829c

View File

@ -79,7 +79,7 @@ int32_t blisp_device_open(struct blisp_device* device, const char* port_name) {
// if (device->is_usb) {
// device->current_baud_rate = 2000000;
// } else {
device->current_baud_rate = 500000;
device->current_baud_rate = 460800;
// }
#if 0