Skip to content

Commit

Permalink
Increase bootloader upload timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerivec committed Nov 5, 2024
1 parent 57a39aa commit 86b1c81
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $ npm install -g ember-zli
$ ember-zli COMMAND
running command...
$ ember-zli (--version)
ember-zli/2.8.0 win32-x64 node-v22.11.0
ember-zli/2.8.1 win32-x64 node-v22.11.0
$ ember-zli --help [COMMAND]
USAGE
$ ember-zli COMMAND
Expand Down Expand Up @@ -60,7 +60,7 @@ EXAMPLES
$ ember-zli bootloader
```

_See code: [src/commands/bootloader/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.0/src/commands/bootloader/index.ts)_
_See code: [src/commands/bootloader/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.1/src/commands/bootloader/index.ts)_

## `ember-zli help [COMMAND]`

Expand Down Expand Up @@ -97,7 +97,7 @@ EXAMPLES
$ ember-zli router
```

_See code: [src/commands/router/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.0/src/commands/router/index.ts)_
_See code: [src/commands/router/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.1/src/commands/router/index.ts)_

## `ember-zli sniff`

Expand All @@ -114,7 +114,7 @@ EXAMPLES
$ ember-zli sniff
```

_See code: [src/commands/sniff/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.0/src/commands/sniff/index.ts)_
_See code: [src/commands/sniff/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.1/src/commands/sniff/index.ts)_

## `ember-zli stack`

Expand All @@ -131,7 +131,7 @@ EXAMPLES
$ ember-zli stack
```

_See code: [src/commands/stack/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.0/src/commands/stack/index.ts)_
_See code: [src/commands/stack/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.1/src/commands/stack/index.ts)_

## `ember-zli utils`

Expand All @@ -148,7 +148,7 @@ EXAMPLES
$ ember-zli utils
```

_See code: [src/commands/utils/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.0/src/commands/utils/index.ts)_
_See code: [src/commands/utils/index.ts](https://github.com/Nerivec/ember-zli/blob/v2.8.1/src/commands/utils/index.ts)_

## `ember-zli version`

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ember-zli",
"description": "Interact with EmberZNet-based adapters using zigbee-herdsman 'ember' driver",
"version": "2.8.0",
"version": "2.8.1",
"author": "Nerivec",
"bin": {
"ember-zli": "bin/run.js"
Expand Down
2 changes: 1 addition & 1 deletion src/utils/bootloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const BOOTLOADER_UPLOAD_COMPLETE = Buffer.from('Serial upload complete', 'ascii'
const BOOTLOADER_UPLOAD_ABORTED = Buffer.from('Serial upload aborted', 'ascii')

const BOOTLOADER_KNOCK_TIMEOUT = 2000
const BOOTLOADER_UPLOAD_TIMEOUT = 120000
const BOOTLOADER_UPLOAD_TIMEOUT = 1500000
const BOOTLOADER_UPLOAD_EXIT_TIMEOUT = 500
const BOOTLOADER_CMD_EXEC_TIMEOUT = 200

Expand Down

0 comments on commit 86b1c81

Please sign in to comment.