Good morning,
I have a HEX file that I've chosen with file chooser and read into a list.
Next step is to transmit this list/hex file to a microcontroller (over an opened com port). How would I do this ?
Hints, tips, advice, gratefully received - Many thanks in advance
I have a HEX file that I've chosen with file chooser and read into a list.
B4X:
Dim List1 As List
List1.Initialize
List1 = File.ReadList(File.GetFileParent(filename), File.GetName(filename))
For i = 0 To List1.Size - 1
Log(List1.Get(i))
Next
Next step is to transmit this list/hex file to a microcontroller (over an opened com port). How would I do this ?
Hints, tips, advice, gratefully received - Many thanks in advance