This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

nrfutil package file.dat format

I'm trying to simplify the open_bootloader example from SDK 15.3. I'm getting rid of version, signature and keep only the CRC validation. I'm actually trying to understand the format of the .dat file from the zip file nrfutil create but can't find documentation about it. Is it available somewhere?

Thank a lot for help!

Parents
  • The init packet is serialized with google protobuf, please take a look at "Customizing the init packet" for more details. However, changing the format requires modification to both nrfutil and the protobuf parser inside the bootloader. So I would not recommend it if the goal is to simplify the bootloader. Instead, you should consider making the bootloader ignore the parameters you don't need. nrf_dfu_validation.c is the file you want to modify. 

  • My final goal is to get rid of nrfutil and be able to create the data from the .dat file on a microcontroller. If the only validation left is a CRC I think it's possible but I have a lot of difficulty to find how to create the .dat file. I am looking at the nrfutil Python code but I think I'll have to get better at Python to complete this task. I have use google protobuf to modify the init packet but wasn't able to modify nrfutil code with the new packet format. I'll keep digging.

Reply
  • My final goal is to get rid of nrfutil and be able to create the data from the .dat file on a microcontroller. If the only validation left is a CRC I think it's possible but I have a lot of difficulty to find how to create the .dat file. I am looking at the nrfutil Python code but I think I'll have to get better at Python to complete this task. I have use google protobuf to modify the init packet but wasn't able to modify nrfutil code with the new packet format. I'll keep digging.

Children
Related