2.4.0 • Published 4 months ago

binary-version-reader v2.4.0

Weekly downloads
675
License
Apache-2.0
Repository
-
Last release
4 months ago

The Particle Binary Version Reader!

If you're building firmware on the Particle Platform, you might be curious to see the metadata stored in your firmware! This module will read any metadata stored in the various modules (bootloader, system, user), and help you understand any dependencies.

Build Status

Usage

    const Reader = require('binary-version-reader').HalModuleParser;
    const reader = new Reader();
    reader.parseFile('your_binary.bin', function(fileInfo, err) {
        console.log(fileInfo);
    });

You can also get the raw output of binary-version-reader by using it as a command line tool without installing it.

npx binary-version-reader your_binary.bin

Example output

{
	"filename": "/.../040_user-part.bin",
	"fileBuffer": "<Buffer ...>",
	"crc": {
		"ok": 1,
		"storedCrc": "b138f375",
		"actualCrc": "b138f375"
	},
	"prefixInfo": {
		"moduleStartAddy": "80a0000",
		"moduleEndAddy": "80a128c",
		"moduleVersion": 2,
		"platformID": 6,
		"moduleFunction": 5,
		"moduleIndex": 1,
		"depModuleFunction": 4,
		"depModuleIndex": 2,
		"depModuleVersion": 1
	},
	"suffixInfo": {
		"productId": -1,
		"productVersion": -1,
		"fwUniqueId": "f9f552aa98d7e3eab750862a01743024a4d05514021598a4341b3d83b37eda36",
		"reserved": 0,
		"suffixSize": 36,
		"crcBlock": "b138f375"
	}
}

Testing firmware binaries

When you need to create a firmware binary for an integration test, you can use the provided firmwareTestHelper instead of relying on fixtures in your application.

const { firmwareTestHelper, ModuleInfo } = require('binary-version-reader');
const binary = firmwareTestHelper.createFirmwareBinary({ productId: 123, productVersion: 6, platformId: 10, deps: [ { func: ModuleInfo.FunctionType.SYSTEM_PART, index: 1, version: 1210 } ] });

Releasing changes

Packages are only released from the master branch after peer review.

  1. make sure you have the latest:
    • $ git checkout master
    • $ git pull
  2. make sure tests pass
    • $ npm test
  3. bump the version
    • $ npm version <major|minor|patch>
  4. push your tags:
    • $ git push origin main --follow-tags
2.4.0

4 months ago

2.3.0

6 months ago

2.2.1

8 months ago

2.3.1

6 months ago

2.2.0

11 months ago

2.1.0

12 months ago

2.0.2

1 year ago

2.0.1

1 year ago

1.2.0

2 years ago

1.3.0

2 years ago

1.2.1

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

3 years ago

1.0.0

4 years ago

0.8.2

4 years ago

0.8.1

4 years ago

0.8.0

4 years ago

0.7.5

4 years ago

0.7.4

4 years ago

0.7.3

4 years ago

0.7.0

5 years ago

0.6.5

5 years ago

0.6.4

5 years ago

0.6.3

5 years ago

0.6.2

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.3

6 years ago

0.5.2

7 years ago

0.5.1

7 years ago

0.5.0

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago