mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
33 lines
296 B
C++
33 lines
296 B
C++
#include <ion.h>
|
|
#include <ion/usb.h>
|
|
|
|
namespace Ion {
|
|
namespace USB {
|
|
|
|
bool isPlugged() {
|
|
return false;
|
|
}
|
|
|
|
bool isEnumerated() {
|
|
return false;
|
|
}
|
|
|
|
void clearEnumerationInterrupt() {
|
|
}
|
|
|
|
void DFU(bool, bool, int) {
|
|
}
|
|
|
|
void enable() {
|
|
}
|
|
|
|
void disable() {
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
void Ion::updateSlotInfo() {
|
|
|
|
}
|