update abstract method
Future<void>
update(
- List<
Image> images, { - FirmwareUpgradeConfiguration configuration = const FirmwareUpgradeConfiguration(),
Start update process
This is the full-featured API to start DFU update, including support for Multi-Image uploads.
images
is a List<Tuple2<int, Uint8List>>
where int
is the image number and Uint8List
is the image data.
Implementation
Future<void> update(List<Image> images,
{FirmwareUpgradeConfiguration configuration =
const FirmwareUpgradeConfiguration()});