Skip to content

Commit

Permalink
Merge branch 'development' into extend-clear-layer
Browse files Browse the repository at this point in the history
  • Loading branch information
folivaresrios committed Jul 10, 2024
2 parents 71eec15 + c4681e6 commit ce386ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Bazecor",
"productName": "Bazecor",
"version": "1.4.0-rc.6",
"version": "1.4.0",
"description": "Bazecor desktop app",
"private": true,
"repository": {
Expand Down
3 changes: 3 additions & 0 deletions src/api/flash/defyFlasher/NRf52833-flasher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { serialConnection, rawCommand, noWaitCommand } from "../serialConnection
import { PACKET_SIZE, TYPE_DAT, TYPE_ELA, TYPE_ESA } from "../flasherConstants";
import { HexType } from "../types";
import ihexDecode from "../ihexDecode";
import { delay } from "../delay";

let serialPort;

Expand Down Expand Up @@ -160,7 +161,9 @@ const NRf52833 = {

try {
// START APPLICATION
await delay(300);
noWaitCommand("S#", serialPort);
await delay(300);
if (ans[0] !== 65) log.warn("warning when disconnecting");
} catch (error) {
log.warn(error);
Expand Down

0 comments on commit ce386ee

Please sign in to comment.