1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +03:00

Added USB VCP detect and debugging. (#5689)

This commit is contained in:
Michael Keller 2018-04-18 01:22:46 +12:00 committed by GitHub
parent 49139f2d6d
commit b2c247d34a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 22 additions and 1 deletions

View file

@ -670,4 +670,6 @@ extern "C" {
void dashboardDisablePageCycling(void) {}
bool imuQuaternionHeadfreeOffsetSet(void) { return true; }
void rescheduleTask(cfTaskId_e, uint32_t) {}
bool usbCableIsInserted(void) { return false; }
bool usbVcpIsConnected(void) { return false; }
}