There currently is no practical use to have TactilityHeadless as a subproject. I'm merging it with the Tactility project.
22 lines
417 B
C++
22 lines
417 B
C++
#ifndef ESP_PLATFORM
|
|
|
|
#include "Tactility/hal/usb/Usb.h"
|
|
|
|
#define TAG "usb"
|
|
|
|
namespace tt::hal::usb {
|
|
|
|
bool startMassStorageWithSdmmc() { return false; }
|
|
void stop() {}
|
|
Mode getMode() { return Mode::Default; }
|
|
bool isSupported() { return false; }
|
|
|
|
bool canRebootIntoMassStorageSdmmc() { return false; }
|
|
void rebootIntoMassStorageSdmmc() {}
|
|
bool isUsbBootMode() { return false; }
|
|
void resetUsbBootMode() {}
|
|
|
|
}
|
|
|
|
#endif
|