(1.0.33) bump
This commit is contained in:
8
dist/index.cjs.js
vendored
8
dist/index.cjs.js
vendored
@@ -206,12 +206,12 @@ class Updater {
|
||||
this.bleObject.startNotification(this.bleDeviceId, this._updaterServiceUUID, this._updaterCommandCharacterisitcUUID, (rawData) => {
|
||||
let dataView = new Uint8Array(rawData);
|
||||
console.log(dataView);
|
||||
if (dataView[0] == 1) {
|
||||
if (dataView[0] == 1 && dataView.length == 1) {
|
||||
// send file
|
||||
this.sendNextPacket();
|
||||
progressCallback(`MTU: ${this._packetSize}; Sending (${Math.floor((this._fileProgress * 100) / this._fileSize)}%), ${this._fileProgress} / ${this._fileSize}`);
|
||||
}
|
||||
else if (dataView[0] == 2) {
|
||||
else if (dataView[0] == 2 && dataView.length == 1) {
|
||||
// done logic
|
||||
console.log(`progress >= filesize: ${this._fileProgress} vs ${this._fileSize}`);
|
||||
if (this._fileProgress >= (this._fileSize - this._packetSize)) {
|
||||
@@ -234,12 +234,12 @@ class Updater {
|
||||
this._fileProgress = 0;
|
||||
}
|
||||
}
|
||||
else if (dataView[0] == 15) {
|
||||
else if (dataView[0] == 15 && dataView.length == 1) {
|
||||
// error cmd
|
||||
progressCallback(`Error on remote: ${this._fileProgress} / ${this._fileSize}`);
|
||||
reject("Error on remote");
|
||||
}
|
||||
else if (dataView[0] == 0) {
|
||||
else if (dataView[0] == 0 && dataView.length == 1) {
|
||||
// ignore no command
|
||||
progressCallback(`Board is on`);
|
||||
}
|
||||
|
||||
8
dist/index.es.js
vendored
8
dist/index.es.js
vendored
@@ -204,12 +204,12 @@ class Updater {
|
||||
this.bleObject.startNotification(this.bleDeviceId, this._updaterServiceUUID, this._updaterCommandCharacterisitcUUID, (rawData) => {
|
||||
let dataView = new Uint8Array(rawData);
|
||||
console.log(dataView);
|
||||
if (dataView[0] == 1) {
|
||||
if (dataView[0] == 1 && dataView.length == 1) {
|
||||
// send file
|
||||
this.sendNextPacket();
|
||||
progressCallback(`MTU: ${this._packetSize}; Sending (${Math.floor((this._fileProgress * 100) / this._fileSize)}%), ${this._fileProgress} / ${this._fileSize}`);
|
||||
}
|
||||
else if (dataView[0] == 2) {
|
||||
else if (dataView[0] == 2 && dataView.length == 1) {
|
||||
// done logic
|
||||
console.log(`progress >= filesize: ${this._fileProgress} vs ${this._fileSize}`);
|
||||
if (this._fileProgress >= (this._fileSize - this._packetSize)) {
|
||||
@@ -232,12 +232,12 @@ class Updater {
|
||||
this._fileProgress = 0;
|
||||
}
|
||||
}
|
||||
else if (dataView[0] == 15) {
|
||||
else if (dataView[0] == 15 && dataView.length == 1) {
|
||||
// error cmd
|
||||
progressCallback(`Error on remote: ${this._fileProgress} / ${this._fileSize}`);
|
||||
reject("Error on remote");
|
||||
}
|
||||
else if (dataView[0] == 0) {
|
||||
else if (dataView[0] == 0 && dataView.length == 1) {
|
||||
// ignore no command
|
||||
progressCallback(`Board is on`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user