1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-13 11:29:53 +03:00

splitting MSP and CLI integration, new serial api

This commit is contained in:
cTn 2014-01-22 20:35:37 +01:00
parent 834345a80c
commit c0937ddbd4
3 changed files with 105 additions and 101 deletions

View file

@ -288,7 +288,11 @@ function onClosed(result) {
}
function read_serial(info) {
MSP_char_read(info);
if (!CLI_active) {
MSP_char_read(info);
} else {
handle_CLI(info);
}
}
function port_usage() {