1
1
const _ = require ( 'lodash' ) ;
2
- const program = require ( 'commander' ) ;
3
2
const Avrgirl = require ( 'avrgirl-arduino' ) ;
4
3
const Serialport = require ( 'serialport' ) ;
5
4
const child_process = require ( 'child_process' ) ;
6
5
const colors = require ( 'colors' ) ;
7
- const fs = require ( 'fs' ) ;
8
6
const fsextra = require ( 'fs-extra' ) ;
9
7
10
8
const interchange_client = require ( './interchange_client' ) ;
@@ -16,7 +14,6 @@ const version = require('../package.json').version;
16
14
17
15
// I think this can be refactored to be purely in the function where it is needed
18
16
let ic_client ; // = new interchange_client.Client();
19
- // let fw = null; // used to hold details of the firmware we want in it.
20
17
21
18
const Interchange = function ( ) {
22
19
this . firmwares = firmwares ;
@@ -151,7 +148,6 @@ Interchange.prototype.flash_firmware = function(firmware, opts) {
151
148
152
149
avrgirl . flash ( firmware , ( err ) => {
153
150
if ( err ) {
154
- // console.error(err);
155
151
reject ( err ) ;
156
152
}
157
153
@@ -181,25 +177,22 @@ Interchange.prototype.install_firmware = async function(firmware, options = {})
181
177
// check firmware
182
178
// download firmware
183
179
// flash firmware to device
184
- // optionally do interchange client things if needed
180
+ // optionally do interchange client configuration
185
181
186
182
try {
187
- /* istanbul ignore next */
188
- if ( ! process . env . TEST ) {
189
- console . log ( 'about to check firmware' ) ;
190
- }
183
+ // check the firmware
191
184
const { fw, opts} = await this . check_firmware ( firmware , settings ) ;
192
185
const usingFirmata = opts . useFirmata || false ; // Assumes not unless explicit
193
186
194
187
/* istanbul ignore next */
195
188
if ( ! process . env . TEST ) {
196
- console . log ( 'now download the firmware' ) ;
189
+ console . log ( 'Downloading firmware' ) ;
197
190
}
198
191
const { hexpath, tmpdir} = await this . download_firmware ( fw , opts ) ;
199
192
200
193
/* istanbul ignore next */
201
194
if ( ! process . env . TEST ) {
202
- console . log ( 'now flash the firmware ' ) ;
195
+ console . log ( 'Flashing firmware to board ' ) ;
203
196
}
204
197
const port = await this . flash_firmware ( hexpath , options )
205
198
. then ( ( serport ) => {
@@ -216,7 +209,7 @@ Interchange.prototype.install_firmware = async function(firmware, options = {})
216
209
if ( ! usingFirmata ) {
217
210
/* istanbul ignore next */
218
211
if ( ! process . env . TEST ) {
219
- console . log ( 'About to configure the firmware' . magenta ) ;
212
+ console . log ( 'Configuring the firmware' . magenta ) ;
220
213
}
221
214
// combine options and firmware details together and pass across
222
215
return this . set_firmware_details ( port , { ...opts , ...fw } )
@@ -240,7 +233,6 @@ Interchange.prototype.get_firmware_info = function(port) {
240
233
ic_client . port = port ;
241
234
242
235
ic_client . on ( 'error' , ( err ) => {
243
- // console.error('ic_client error', err);
244
236
reject ( err ) ;
245
237
} ) ;
246
238
@@ -313,7 +305,6 @@ Interchange.prototype.set_firmware_details = (port, opts) => {
313
305
ic_client . port = port ;
314
306
315
307
ic_client . on ( 'error' , ( err ) => {
316
- // console.error("Can't config device. Did you remember to set your backpack into config mode?".red);
317
308
ic_client . close ( ) ;
318
309
reject ( err ) ;
319
310
} ) ;
0 commit comments