Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tabs/cli.js and tabs/firmware_flasher.js #2054

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tabs/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { globalSettings } = require('./../js/globalSettings');
const CliAutoComplete = require('./../js/CliAutoComplete');
const { ConnectionType } = require('./../js/connection/connection');
const jBox = require('./../js/libraries/jBox/jBox.min');
const mspDeduplicationQueue = require('./msp/mspDeduplicationQueue');
const mspDeduplicationQueue = require('./../js/msp/mspDeduplicationQueue');

TABS.cli = {
lineDelayMs: 50,
Expand Down
2 changes: 1 addition & 1 deletion tabs/firmware_flasher.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const mspQueue = require('./../js/serial_queue');
const mspHelper = require('./../js/msp/MSPHelper');
const STM32 = require('./../js/protocols/stm32');
const STM32DFU = require('./../js/protocols/stm32usbdfu');
const mspDeduplicationQueue = require('./msp/mspDeduplicationQueue');
const mspDeduplicationQueue = require('./../js/msp/mspDeduplicationQueue');

TABS.firmware_flasher = {};
TABS.firmware_flasher.initialize = function (callback) {
Expand Down
Loading