Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: STM32F103C8T6_WebUSBDFU STM32F103C8T6_USBDFU STM32F103C8T6_USBDFU dfu_usb_stm32f103
Fork of USBDevice_STM32F103 by
Revision 70:e410de636542, committed 2016-11-25
- Comitter:
- devanlai
- Date:
- Fri Nov 25 18:31:08 2016 +0000
- Parent:
- 68:c190028858f9
- Parent:
- 69:8d72761d52fd
- Commit message:
- Merge callback fix
Changed in this revision
| USBDFU/WebUSBDFU.cpp | Show annotated file Show diff for this revision Revisions of this file | 
--- a/USBDFU/USBDFU.cpp	Sun Sep 04 09:54:47 2016 +0000
+++ b/USBDFU/USBDFU.cpp	Fri Nov 25 18:31:08 2016 +0000
@@ -31,7 +31,7 @@
 }
 
 void USBDFU::attach(Callback<void()> func) {
-    if (func != NULL) {
+    if (func) {
         detach.attach(func);
     } else {
         detach.attach(no_op);
--- a/USBDFU/WebUSBDFU.cpp	Sun Sep 04 09:54:47 2016 +0000
+++ b/USBDFU/WebUSBDFU.cpp	Fri Nov 25 18:31:08 2016 +0000
@@ -37,7 +37,7 @@
 }
 
 void WebUSBDFU::attach(Callback<void()> func) {
-    if (func != NULL) {
+    if (func) {
         detach.attach(func);
     } else {
         detach.attach(no_op);
    