re-enable uart channel device driver installation
i'm not really sure why this was commented out to begin with. possibly due to the broken parsing of the channel path string in uart_open, but i am unsure exactly.
This commit is contained in:
parent
42d8a985e5
commit
50cc3c333c
|
@ -246,11 +246,11 @@ void initialize() {
|
|||
}
|
||||
#endif
|
||||
|
||||
// if (res = uart_install()) {
|
||||
// log_num(LOG_ERROR, "FAILED: serial port initialization", res);
|
||||
// } else {
|
||||
// log(LOG_INFO, "Serial ports initialized.");
|
||||
// }
|
||||
if ((res = uart_install())) {
|
||||
log_num(LOG_ERROR, "FAILED: serial port initialization", res);
|
||||
} else {
|
||||
log(LOG_INFO, "Serial ports initialized.");
|
||||
}
|
||||
|
||||
if ((res = fsys_init())) {
|
||||
log_num(LOG_ERROR, "FAILED: file system initialization", res);
|
||||
|
|
Loading…
Reference in a new issue