@canboat/canboatjs 3.0.0-beta.7 → 3.0.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/n2kDevice.js +2 -1
  2. package/package.json +3 -2
package/lib/n2kDevice.js CHANGED
@@ -169,6 +169,7 @@ function handleISORequest(device, n2kMsg) {
169
169
  sendConfigInformation(device)
170
170
  break;
171
171
  case 60928: // ISO address claim request
172
+ debug('sending address claim %j', device.addressClaim)
172
173
  device.sendPGN(device.addressClaim)
173
174
  break;
174
175
  case 126464:
@@ -339,7 +340,7 @@ function sendISORequest(device, pgn, src, dst=255) {
339
340
 
340
341
 
341
342
  function sendProductInformation(device) {
342
- debug("Sending product info..")
343
+ debug("Sending product info %j", device.productInfo))
343
344
 
344
345
  device.sendPGN(device.productInfo)
345
346
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canboat/canboatjs",
3
- "version": "3.0.0-beta.7",
3
+ "version": "3.0.0-beta.8",
4
4
  "description": "Native javascript version of canboat",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -18,7 +18,8 @@
18
18
  "actisense-file": "./bin/actisense-file",
19
19
  "actisense-n2k-tcp": "./bin/actisense-n2k-tcp",
20
20
  "candumpjs": "./bin/candumpjs",
21
- "ikonvert-serial": "./bin/ikonvert-serial"
21
+ "ikonvert-serial": "./bin/ikonvert-serial",
22
+ "cansend": "./bin/cansend"
22
23
  },
23
24
  "jest": {
24
25
  "rootDir": "lib"