Files
Upsilon/ion/src/device/bootloader/usb/dfu_xip.cpp

14 lines
224 B
C++

#include <ion.h>
#include "calculator.h"
namespace Ion {
namespace USB {
void DFU(bool exitWithKeyboard, void * data) {
Ion::updateSlotInfo();
Ion::Device::USB::Calculator::PollAndReset(exitWithKeyboard, data);
}
}
}