From c8377098018d10a525afc7e73663f142a108cbf6 Mon Sep 17 00:00:00 2001 From: devdl11 Date: Fri, 8 Apr 2022 18:40:08 +0200 Subject: [PATCH] [flasher] Fix old dfu code --- ion/src/device/flasher/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/device/flasher/main.cpp b/ion/src/device/flasher/main.cpp index 09f05e8ca..3dcfcd80d 100644 --- a/ion/src/device/flasher/main.cpp +++ b/ion/src/device/flasher/main.cpp @@ -11,6 +11,6 @@ void ion_main(int argc, const char * const argv[]) { Ion::USB::enable(); while (!Ion::USB::isEnumerated()) { } - Ion::USB::DFU(false, false, 0); + Ion::USB::DFU(false); } }