Skip to content

Commit

Permalink
[nrfconnect] Added missing factory data version field to the Python s…
Browse files Browse the repository at this point in the history
…cript

Factory Data version field has been added to Python script.
  • Loading branch information
ArekBalysNordic committed Jun 29, 2022
1 parent 81c7f2a commit ae9feb1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives.serialization import load_der_private_key

# A user can not change the factory data version and must be coherent with
# the factory data version set in the nRF Connect platform Kconfig file (CHIP_FACTORY_DATA_VERSION).
FACTORY_DATA_VERSION = 1

HEX_PREFIX = "hex:"
PUB_KEY_PREFIX = b'\x04'
INVALID_PASSCODES = [00000000, 11111111, 22222222, 33333333, 44444444,
Expand Down Expand Up @@ -162,6 +166,7 @@ def generate_json(self):
sys.exit(-1)
with json_file:
# serialize data
self._add_entry("version", FACTORY_DATA_VERSION)
self._add_entry("sn", self._args.sn)
self._add_entry("vendor_id", self._args.vendor_id)
self._add_entry("product_id", self._args.product_id)
Expand Down

0 comments on commit ae9feb1

Please sign in to comment.