You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use proguard, add the following line to your proguard rules:
14
21
```-keep class no.nordicsemi.android.dfu.** { *; }```
15
22
23
+
Starting from version 1.9.0 the library is able to retry a DFU update in case of an unwanted
24
+
disconnection. However, to maintain backward compatibility, this feature is by default disabled.
25
+
Call `initiator.setNumberOfRetries(int)` to set how many attempts the service should perform.
26
+
Secure DFU will be resumed after it has been interrupted from the point it stopped, while the
27
+
Legacy DFU will start again.
28
+
16
29
### Device Firmware Update (DFU)
17
30
18
-
The nRF5x Series chips are flash-based SoCs, and as such they represent the most flexible solution available. A key feature of the nRF5x Series and their associated software architecture
19
-
and S-Series SoftDevices is the possibility for Over-The-Air Device Firmware Upgrade (OTA-DFU). See Figure 1. OTA-DFU allows firmware upgrades to be issued and downloaded to products
20
-
in the field via the cloud and so enables OEMs to fix bugs and introduce new features to products that are already out on the market.
31
+
The nRF5x Series chips are flash-based SoCs, and as such they represent the most flexible solution available.
32
+
A key feature of the nRF5x Series and their associated software architecture and S-Series SoftDevices
33
+
is the possibility for Over-The-Air Device Firmware Upgrade (OTA-DFU). See Figure 1.
34
+
OTA-DFU allows firmware upgrades to be issued and downloaded to products in the field via the cloud
35
+
and so enables OEMs to fix bugs and introduce new features to products that are already out on the market.
21
36
This brings added security and flexibility to product development when using the nRF5x Series SoCs.
22
37
23
38

24
39
25
-
This repository contains a tested library for Android 4.3+ platform which may be used to perform Device Firmware Update on the nRF5x device using a phone or a tablet.
40
+
This repository contains a tested library for Android 4.3+ platform which may be used to perform
41
+
Device Firmware Update on the nRF5x device using a phone or a tablet.
26
42
27
-
DFU library has been designed to make it very easy to include these devices into your application. It is compatible with all Bootloader/DFU versions.
43
+
DFU library has been designed to make it very easy to include these devices into your application.
44
+
It is compatible with all Bootloader/DFU versions.
28
45
29
46
[](http://youtu.be/LdY2m_bZTgE)
30
47
@@ -34,38 +51,50 @@ See the [documentation](documentation) for more information.
34
51
35
52
### Requirements
36
53
37
-
The library is compatible with nRF51 and nRF52 devices with S-Series Soft Device and the DFU Bootloader flashed on.
54
+
The library is compatible with nRF51 and nRF52 devices with S-Series Soft Device and the
55
+
DFU Bootloader flashed on.
38
56
39
57
### DFU History
40
58
41
59
#### Legacy DFU
42
60
43
61
***SDK 4.3.0** - First version of DFU over Bluetooth Smart. DFU supports Application update.
44
-
***SDK 6.1.0** - DFU Bootloader supports Soft Device and Bootloader update. As the updated Bootloader may be dependent on the new Soft Device, those two may be sent and installed together.
62
+
***SDK 6.1.0** - DFU Bootloader supports Soft Device and Bootloader update. As the updated
63
+
Bootloader may be dependent on the new Soft Device, those two may be sent and
64
+
installed together.
45
65
- Buttonless update support for non-bonded devices.
46
-
***SDK 7.0.0** - The extended init packet is required. The init packet contains additional validation information: device type and revision, application version, compatible Soft Devices and the firmware CRC.
47
-
***SDK 8.0.0** - The bond information may be preserved after an application update. The new application, when first started, will send the Service Change indication to the phone to refresh the services.
66
+
***SDK 7.0.0** - The extended init packet is required. The init packet contains additional
67
+
validation information: device type and revision, application version, compatible
68
+
Soft Devices and the firmware CRC.
69
+
***SDK 8.0.0** - The bond information may be preserved after an application update.
70
+
The new application, when first started, will send the Service Change indication
71
+
to the phone to refresh the services.
48
72
- Buttonless update support for bonded devices
49
73
- sharing the LTK between an app and the bootloader.
50
74
51
75
#### Secure DFU
52
76
53
77
***SDK 12.0.0** - New Secure DFU has been released. Buttonless service is experimental.
54
-
***SDK 13.0.0** - Buttonless DFU (still experimental) uses different UUIDs. No bond sharing supported. Bootloader will use address +1.
55
-
***SDK 14.0.0** - Buttonless DFU is no longer experimental. A new UUID (0004) added for bonded only devices (previous one (0003) is for non-bonded only).
78
+
***SDK 13.0.0** - Buttonless DFU (still experimental) uses different UUIDs. No bond sharing
79
+
supported. Bootloader will use address +1.
80
+
***SDK 14.0.0** - Buttonless DFU is no longer experimental. A new UUID (0004) added for bonded
81
+
only devices (previous one (0003) is for non-bonded only).
56
82
***SDK 15.0.0** - Support for higher MTUs added.
57
83
58
84
This library is fully backwards compatible and supports both the new and legacy DFU.
59
-
The experimental buttonless DFU service from SDK 12 is supported since version 1.1.0. Due to the fact, that this experimental service from SDK 12 is not safe,
60
-
you have to call [starter.setUnsafeExperimentalButtonlessServiceInSecureDfuEnabled(true)](https://github.com/NordicSemiconductor/Android-DFU-Library/blob/release/dfu/src/main/java/no/nordicsemi/android/dfu/DfuServiceInitiator.java#L376)
61
-
to enable it. Read the method documentation for details. It is recommended to use the Buttonless service from SDK 13 (for non-bonded devices, or 14 for bonded).
85
+
The experimental buttonless DFU service from SDK 12 is supported since version 1.1.0.
86
+
Due to the fact, that this experimental service from SDK 12 is not safe, you have to call
to enable it. Read the method documentation for details. It is recommended to use the Buttonless
89
+
service from SDK 13 (for non-bonded devices, or 14 for bonded).
62
90
Both are supported since DFU Library 1.3.0.
63
91
64
92
Check platform folders for mode details about compatibility for each library.
65
93
66
94
### React Native
67
95
68
-
A library for both iOS and Android that is based on this library is available for React Native: [react-native-nordic-dfu](https://github.com/Pilloxa/react-native-nordic-dfu)
96
+
A library for both iOS and Android that is based on this library is available for React Native:
@@ -68,7 +70,8 @@ public BaseBluetoothGattCallback getGattCallback() {
68
70
* @param forceRefresh true, if cache should be cleared even for a bonded device. Usually the Service Changed indication should be used for this purpose.
69
71
* @param scanForBootloader true to scan for advertising bootloader, false to keep the same address
0 commit comments