Merge pull request from evhan55/extensions/vernier-withresponse-fix

Removing withResponse flag in GDX-FOR extension write method
This commit is contained in:
Evelyn Eastmond 2019-01-16 15:14:35 -05:00 committed by GitHub
commit ae95df553d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ class ScratchLinkDeviceAdapter {
const data = Base64Util.uint8ArrayToBase64(commandBuffer);
return this.scratchLinkSocket
.write(this._service, this._commandChar, data, 'base64', true);
.write(this._service, this._commandChar, data, 'base64');
}
setup ({onResponse}) {