diff --git a/commands/SerialCommand.js b/commands/SerialCommand.js index 8d883fa6e..58cb224b7 100644 --- a/commands/SerialCommand.js +++ b/commands/SerialCommand.js @@ -720,7 +720,7 @@ SerialCommand.prototype = extend(BaseCommand.prototype, { security = 0; } - return cb(security + '\n', startTimeout.bind(self, 5000)); + return cb(security + '\n', startTimeout.bind(self, 10000)); } inquirer.prompt([{ @@ -734,7 +734,7 @@ SerialCommand.prototype = extend(BaseCommand.prototype, { { name: 'Unsecured', value: 0 } ] }], function(ans) { - cb(ans.security + '\n', startTimeout.bind(self, 5000)); + cb(ans.security + '\n', startTimeout.bind(self, 10000)); }); });