Skip to content

Commit 9c142dd

Browse files
author
AJ Keller
authored
Merge pull request #21 from aj-ptw/development
ADD: Stop byte property to daisy samples
2 parents c83c830 + ea1ef0a commit 9c142dd

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v0.2.7
2+
3+
### Bug Fixes
4+
5+
* No `stopByte` property for daisy samples. Added tests.
6+
17
# v0.2.6
28

39
### Bug Fixes

openBCIUtilities.js

+4
Original file line numberDiff line numberDiff line change
@@ -1803,6 +1803,8 @@ function makeDaisySampleObject (lowerSampleObject, upperSampleObject) {
18031803
'upper': upperSampleObject.auxData
18041804
};
18051805

1806+
daisySampleObject.stopByte = lowerSampleObject.stopByte;
1807+
18061808
daisySampleObject.timestamp = (lowerSampleObject.timestamp + upperSampleObject.timestamp) / 2;
18071809

18081810
daisySampleObject['_timestamps'] = {
@@ -1868,6 +1870,8 @@ function makeDaisySampleObjectWifi (lowerSampleObject, upperSampleObject) {
18681870
daisySampleObject['timestamp'] = lowerSampleObject.timestamp;
18691871
}
18701872

1873+
daisySampleObject.stopByte = lowerSampleObject.stopByte;
1874+
18711875
daisySampleObject['_timestamps'] = {
18721876
'lower': lowerSampleObject.timestamp,
18731877
'upper': upperSampleObject.timestamp

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openbci-utilities",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"description": "The official utility package of Node.js SDK for the OpenBCI Biosensor Boards.",
55
"main": "index.js",
66
"scripts": {

test/openBCIUtilities-test.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -1628,6 +1628,10 @@ describe('openBCIUtilities', function () {
16281628
expect(daisySampleObjectNoScale.auxData['upper'][i]).to.equal(i + 3);
16291629
}
16301630
});
1631+
it('should take the lower stopByte', function () {
1632+
expect(daisySampleObject.stopByte).to.equal(lowerSampleObject.stopByte);
1633+
expect(daisySampleObjectNoScale.stopByte).to.equal(lowerSampleObjectNoScale.stopByte);
1634+
});
16311635
it('should average the two timestamps together', function () {
16321636
let expectedAverage = (upperSampleObject.timestamp + lowerSampleObject.timestamp) / 2;
16331637
expect(daisySampleObject.timestamp).to.equal(expectedAverage);
@@ -1733,7 +1737,11 @@ describe('openBCIUtilities', function () {
17331737
});
17341738
it('should take the lower timestamp', function () {
17351739
expect(daisySampleObject.timestamp).to.equal(lowerSampleObject.timestamp);
1736-
expect(daisySampleObjectNoScale.timestamp).to.equal(lowerSampleObject.timestamp);
1740+
expect(daisySampleObjectNoScale.timestamp).to.equal(lowerSampleObjectNoScale.timestamp);
1741+
});
1742+
it('should take the lower stopByte', function () {
1743+
expect(daisySampleObject.stopByte).to.equal(lowerSampleObject.stopByte);
1744+
expect(daisySampleObjectNoScale.stopByte).to.equal(lowerSampleObjectNoScale.stopByte);
17371745
});
17381746
it('should place the old timestamps in an object', function () {
17391747
expect(daisySampleObject._timestamps.lower).to.equal(lowerSampleObject.timestamp);

0 commit comments

Comments
 (0)