I am writing a code to perform DFU update in python. I want to use "nrfutil" library in my python script. I don't want to use "nrfutil.exe" as command line. Thank you.
I am writing a code to perform DFU update in python. I want to use "nrfutil" library in my python script. I don't want to use "nrfutil.exe" as command line. Thank you.
Hello,
Take a look at this blog post on nRF util. To the end, it shows a python script for programming the devices. There you can actually change the traits and call the subprocess(in the script). I suggest to go through the whole blog for better understanding.
Kind Regards,
Abhijith
Hello,
Take a look at this blog post on nRF util. To the end, it shows a python script for programming the devices. There you can actually change the traits and call the subprocess(in the script). I suggest to go through the whole blog for better understanding.
Kind Regards,
Abhijith
I am using nrfutil using "SubProcess" module in python. But the issue is every time I share my code, other user must have "nrfutil.exe" on his system for "SubProcess" module to work. I want to use "nrfutil" as a library, just like we use "SubProcess". I have installed nrfutil using "Pip install nrfutil" but I am not able to import the library in my script.