1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-26 09:45:28 +03:00

Move mDNS initialization (#3412)

This commit is contained in:
Mark Haslinghuis 2023-04-10 01:55:24 +02:00 committed by GitHub
parent 5344781de2
commit ef40e88e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View file

@ -12,7 +12,6 @@ import PortUsage from "./port_usage";
import PortHandler from "./port_handler";
import CONFIGURATOR, { API_VERSION_1_45, API_VERSION_1_46 } from "./data_storage";
import serial from "./serial";
import MdnsDiscovery from "./mdns_discovery";
import UI_PHONES from "./phones_ui";
import { bit_check } from './bit.js';
import { sensor_status, have_sensor } from "./sensor_helpers";
@ -171,7 +170,6 @@ export function initializeSerialBackend() {
setConfig({'auto_connect': GUI.auto_connect});
});
MdnsDiscovery.initialize();
PortHandler.initialize();
PortUsage.initialize();
}