Skip to content

Releases: NordicSemiconductor/Flutter-nRF-Connect-Device-Manager

0.4.2

15 Jan 10:24
Compare
Choose a tag to compare

0.4.2

fix(#84): thanks to @hkm5558

0.4.1

22 Apr 17:42
Compare
Choose a tag to compare

0.4.1

Prevent request Bluetooth permission on iOS until it is required (#81):

Full Changelog: 0.4.0...0.4.1

0.4.0

29 Mar 17:07
Compare
Choose a tag to compare
  • New signature of update method:
    • Use Image object instead of Pair as an argument
  • UpdateManager supports reading image list (#66):

0.3.3

28 Feb 19:29
Compare
Choose a tag to compare
  • Added configuration parameter for single image update to protobuf definition
  • Added configuration parameter in ios code
  • Added configuration parameter in android
  • Added configuration parameter in flutter

0.3.2

27 Feb 16:32
Compare
Choose a tag to compare
  • Fixed crash on iOS when FlutterError was sent from native code.

0.3.0

14 Jan 16:27
Compare
Choose a tag to compare

Logger:

The logging system was simplified

Listen to logs:

updateManager.logger.logMessageStream.listen((event) {
      print(event.message);
    }, onError: (error) {
      print(error);
    }, onDone: () {
      print('done');
    });

Read the logs:

List<McuLogMessage> logs = await updateManager.logger.readLogs();

Single image update

Now, you have a simplified method for updating single images.

await updateManager.updateWithImageData(image: image);

It corresponds to

public func start(data: Data, using configuration: FirmwareUpgradeConfiguration = FirmwareUpgradeConfiguration()) throws

or

public synchronized void start(byte @NotNull [] imageData) throws McuMgrException

0.2.0

02 Jan 12:34
Compare
Choose a tag to compare

0.2.0+1

  • Direct XIP support added
  • FirmwareUpgradeMode can be passed as a parameter to FirmwareUpgradeConfiguration.
  • Upgraded dependencies.

Minor bugfixes

15 May 08:21
Compare
Choose a tag to compare

Disabled live logs update as it can lead to issues on android.

Dependancies update

12 May 14:30
Compare
Choose a tag to compare
0.1.2

0.1.2: Update dependancies

Release on pub.dev

16 Mar 13:12
Compare
Choose a tag to compare

The library is available on pub.dev