April 2017
Intermediate to advanced
242 pages
6h 10m
English
In order to perform DFU, you will first write a DFUService that is extended by DfuBaseService provided by Nordic’s API. In this class you will write your implementation of three significant methods:
public class DfuService extends DfuBaseService { public DfuService() { }@Override protected Class<? extends Activity> getNotificationTarget() { return NotificationActivity.class; } @Override public IBinder onBind(Intent intent) { // TODO: Return the ...Read now
Unlock full access