Skip to content

Commit

Permalink
Merge pull request #86 from retiutut/v2.0.7
Browse files Browse the repository at this point in the history
V2.0.7 Bug Fix 2
  • Loading branch information
daniellasry authored Mar 5, 2019
2 parents ce3b4b0 + 366c467 commit 4c14054
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Bug Fixes

- Display Cyton firmware in GUI OpenBCI/OpenBCI_GUI#449
- Cyton serial SD card mode causes GUI init to fail OpenBCI/OpenBCI_GUI#386

# v2.0.6

Expand Down
4 changes: 2 additions & 2 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -2542,7 +2542,7 @@ const _processSdSerial = (msg, client) => {
.sdStart(msg.command)
.then(() => {
writeCodeToClientOfType(client, kTcpTypeSd, kTcpCodeSuccess, {
action: kTcpActionStop,
action: kTcpActionStart,
protocol: kTcpProtocolSerial
});
// client.write(`${kTcpCmdSd},${kTcpCodeSuccess},${kTcpActionStart}${kTcpStop}`);
Expand All @@ -2553,7 +2553,7 @@ const _processSdSerial = (msg, client) => {
kTcpTypeSd,
kTcpCodeErrorUnknown,
{
action: kTcpActionStart,
action: kTcpActionStop,
message: err.message,
protocol: kTcpProtocolSerial
}
Expand Down

0 comments on commit 4c14054

Please sign in to comment.