Skip to content

Commit

Permalink
Adds chip select delay option
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyman727 committed Sep 3, 2016
1 parent 31c441d commit e9356c0
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 14 deletions.
41 changes: 28 additions & 13 deletions node/tessel-export.js
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,8 @@ Tessel.SPI = function(params, port) {

this.chipSelectActive = params.chipSelectActive === 'high' || params.chipSelectActive === 1 ? 1 : 0;

this.chipSelectDelay = params.chipSelectDelayUs/10 || 0;

if (this.chipSelectActive) {
// active high, pull low for now
this.chipSelect.low();
Expand Down Expand Up @@ -969,11 +971,16 @@ Tessel.SPI = function(params, port) {
};

Tessel.SPI.prototype.send = function(data, callback) {
this._port.cork();

this.chipSelect.low();
this._port._tx(data, callback);
this.chipSelect.high();
this._port.uncork();

setTimeout(() => {
this._port.cork();
this._port._tx(data, callback);
this.chipSelect.high();
this._port.uncork();
}, this.chipSelectDelay);

};

Tessel.SPI.prototype.disable = function() {
Expand All @@ -984,19 +991,27 @@ Tessel.SPI.prototype.disable = function() {
};

Tessel.SPI.prototype.receive = function(data_len, callback) {
this._port.cork();

this.chipSelect.low();
this._port._rx(data_len, callback);
this.chipSelect.high();
this._port.uncork();

setTimeout(() => {
this._port.cork();
this._port._rx(data_len, callback);
this.chipSelect.high();
this._port.uncork();
}, this.chipSelectDelay);
};

Tessel.SPI.prototype.transfer = function(data, callback) {
this._port.cork();

this.chipSelect.low();
this._port._txrx(data, callback);
this.chipSelect.high();
this._port.uncork();

setTimeout(() => {
this._port.cork();
this._port._txrx(data, callback);
this.chipSelect.high();
this._port.uncork();
}, this.chipSelectDelay);
};

Tessel.UART = function(port, options) {
Expand Down Expand Up @@ -1509,7 +1524,7 @@ function getWifiInfo() {
if (bcastMatches === null) {
recursiveWifi(network);
} else {
// Successful matches will have a result that looks like:
// Successful matches will have a result that looks like:
// ["Bcast:0.0.0.0", "Bcast", "0.0.0.0"]
if (bcastMatches.length === 3) {
network.ip = bcastMatches[2];
Expand Down
56 changes: 55 additions & 1 deletion node/test/unit/tessel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2354,7 +2354,10 @@ exports['Tessel.SPI'] = {
return this.socket;
}.bind(this));

this.tessel = new Tessel();
// We want to disable other ports so that we can pass around mock data.
// Otherwise, port A and B get 'readable' events without having any
// queued callbacks (because they are queued on the port we create below).
this.tessel = new Tessel({ ports: {A: false, B: false} });

this.cork = sandbox.stub(Tessel.Port.prototype, 'cork');
this.uncork = sandbox.stub(Tessel.Port.prototype, 'uncork');
Expand Down Expand Up @@ -2432,6 +2435,57 @@ exports['Tessel.SPI'] = {
test.ok(this.spiDisable.calledOnce, true);

test.done();
},
chipSelectDelayOptions: function(test) {
test.expect(2);

var delayUs = 1000;

var s1 = new this.port.SPI();

var s2 = new this.port.SPI({chipSelectDelayUs: delayUs});

test.equal(s1.chipSelectDelay, 0);

test.equal(s2.chipSelectDelay, delayUs/10);

test.done();
},
chipSelectDelayFunctionality: function(test) {
test.expect(2);

var delayUs = 1000;

var s1 = new this.port.SPI({chipSelectDelayUs: delayUs});

var timeoutSpy = sandbox.spy(global, 'setTimeout');

s1.transfer(new Buffer(1), () => {
// One timeout called within transfer and one in the test below
test.equal(timeoutSpy.callCount, 2);
// The first call (chip select delay) waited an appropriate amount of time)
test.equal(timeoutSpy.getCall(0).args[1], delayUs/10);
// Restore setTimeout
timeoutSpy.restore();
test.done();
});

// Wait until after the chip select delay has passed
// and the callback was enqueued. Only return data on the first request
setTimeout(() => {
var called = false;
this.socket.read = () => {
if (called) {
return new Buffer([]);
}
called = true;

return new Buffer([0x84, 0x1]);
};

// Prod the socket to read our buffer
s1._port.sock.emit('readable');
}, (delayUs / 10) * 2 );
}
};

Expand Down

0 comments on commit e9356c0

Please sign in to comment.