I want to know how to add custom field in the firmware package generated using nrfutil? I generate three firmwares but sometimes its error prone, I saw wrong firmware flashed on the device, is it possible to verify the package?
My manifest.json file looks like this,
{
"manifest": {
"application": {
"bin_file": "ble_app_template_pca10056_s140.bin",
"dat_file": "ble_app_template_pca10056_s140.dat"
}
}
}
I use --application-version-string 2, but this helps one inspecting the file, I want something to be written inside the manifest file.
example
{
"manifest": {
"application": {
"version": "1.0.0.panther",
"bin_file": "ble_app_template_pca10056_s140.bin",
"dat_file": "ble_app_template_pca10056_s140.dat"
}
}
}