forked from forks/qmk_firmware
Configurable baud setting
This commit is contained in:
parent
d835ad91a3
commit
f7275f0ede
|
@ -50,10 +50,12 @@ host_driver_t serial_driver = {
|
||||||
send_consumer
|
send_consumer
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifndef SERIAL_LINK_BAUD
|
||||||
|
#error "Serial link baud is not set"
|
||||||
|
#endif
|
||||||
|
|
||||||
// Slow speed for testing
|
|
||||||
static SerialConfig config = {
|
static SerialConfig config = {
|
||||||
.sc_speed = 38400
|
.sc_speed = SERIAL_LINK_BAUD
|
||||||
};
|
};
|
||||||
|
|
||||||
static uint32_t read_from_serial(SerialDriver* driver, uint8_t link) {
|
static uint32_t read_from_serial(SerialDriver* driver, uint8_t link) {
|
||||||
|
|
Loading…
Reference in a new issue