wip: android driver

This commit is contained in:
Kyle Johannes
2023-11-14 14:09:56 -05:00
parent 90e1aa223d
commit b2f67f7ce1
9 changed files with 332 additions and 9 deletions
+8
View File
@@ -15,6 +15,10 @@
#include "icsneo/platform/cdcacm.h"
#endif
#ifdef ICSNEO_ENABLE_ANDROIDUSB
#include "icsneo/platform/cdcacm.h"
#endif
#ifdef ICSNEO_ENABLE_FTDI
#include "icsneo/platform/ftdi.h"
#endif
@@ -65,6 +69,10 @@ std::vector<std::shared_ptr<Device>> DeviceFinder::FindAll() {
#ifdef ICSNEO_ENABLE_CDCACM
CDCACM::Find(newDriverFoundDevices);
#endif
#ifdef ICSNEO_ENABLE_ANDROIDUSB
ANDROIDUSB::Find(newDriverFoundDevices):
#endif
#ifdef ICSNEO_ENABLE_FTDI