mirror of
https://github.com/pine64/blisp.git
synced 2024-12-22 14:30:28 +00:00
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:
parent
a67ab9d218
commit
7fb2cc829c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user