From 4dbcf1619cbe0bccfe5fac9648e5daaf49296399 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Fri, 8 Feb 2019 16:56:29 +0100 Subject: [PATCH] [ion/flasher] Fix includes --- ion/src/device/shared/usb/flasher.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ion/src/device/shared/usb/flasher.cpp b/ion/src/device/shared/usb/flasher.cpp index 71cebf261..2412529a3 100644 --- a/ion/src/device/shared/usb/flasher.cpp +++ b/ion/src/device/shared/usb/flasher.cpp @@ -1,4 +1,4 @@ -#include "../regs/regs.h" +#include #include "../usb/calculator.h" #include @@ -8,6 +8,6 @@ void ion_main(int argc, char * argv[]) { Ion::USB::enable(); while (!Ion::USB::isEnumerated()) { } - Ion::USB::Device::Calculator::PollAndReset(false); + Ion::Device::USB::Calculator::PollAndReset(false); } }