Hi!
What would be the best course of action if I have a connection like this:
Android device (without Bluetooth support) -> RS-485 -> UART -> Main nRF52840 DK + other devices connected via Mesh to this device
So is it possible to somehow:
1.Upload .hex file to Android device
2.Send .hex (converted to byte array) via RS-485 / UART to nRF52840 DK
3. Save .hex file on nRF52840 DK flash
4. Convert / update firmware of all mesh devices from nRF52840 DK which is connected to Android device?
Is this even possible, so that firmware update happens, all on DK devices without the need of Over the Air update or update with python libraries which are not present on Android device?
Edit:
I also noticed it could work in a way that
1. .hex is already converted to .zip file
2. .zip file is sent to nRF52840 DK
3. nRF52840 DK somehow initiates nrfutil dfu serial -pkg dfu_prov-1.zip -p COM9 -b 115200 -i 1 -fc -m
Or
Android starts DFU without nrfuitl(or nrfutil in java/C without python) somehow?
Problem in case when Android tablet would update all mesh devices via UART would be the downtime of system because of serial port(uart) usage for updating, which would last +30 minutes
Thank you!