DeviceUpdateFirmwareFromMot Method (Stream, IFirmwareListener) |
This method attempts to update firmware on the device from a Motorola
SRECord file. Legacy firmware is provided as MOT's. This should
absolutely be avoided for new development as the MOT format has no
protections in place to avoid writing the wrong firmware to a device
which would render your device inoperable. Use this with extreme caution.
Namespace:
ProScript
Assembly:
proscript-csharp (in proscript-csharp.dll) Version: 1.2.79.0 (1.2.79.0)
Syntax public void UpdateFirmwareFromMot(
Stream stream,
IFirmwareListener callback
)
Public Sub UpdateFirmwareFromMot (
stream As Stream,
callback As IFirmwareListener
)
public:
void UpdateFirmwareFromMot(
Stream^ stream,
IFirmwareListener^ callback
)
member UpdateFirmwareFromMot :
stream : Stream *
callback : IFirmwareListener -> unit
Parameters
- stream
- Type: System.IOStream
stream to read the firmware from - callback
- Type: ProScriptIFirmwareListener
callback to report progress (optional)
See Also