mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-24 11:11:02 -07:00
86 lines
2.3 KiB
C++
86 lines
2.3 KiB
C++
#include "lib/core/globals.h"
|
|
#include "lib/config/flags.h"
|
|
#include "lib/usb/usb.h"
|
|
#include "lib/core/bytes.h"
|
|
#include "lib/usb/usbfinder.h"
|
|
#include "lib/external/applesauce.h"
|
|
#include "lib/external/greaseweazle.h"
|
|
#include "protocol.h"
|
|
#include "libusbp.hpp"
|
|
|
|
static const std::set<uint32_t> VALID_DEVICES = {
|
|
GREASEWEAZLE_ID, FLUXENGINE_ID, APPLESAUCE_ID};
|
|
|
|
static const std::string get_serial_number(const libusbp::device& device)
|
|
{
|
|
try
|
|
{
|
|
return device.get_serial_number();
|
|
}
|
|
catch (const libusbp::error& e)
|
|
{
|
|
if (e.has_code(LIBUSBP_ERROR_NO_SERIAL_NUMBER))
|
|
return "n/a";
|
|
throw;
|
|
}
|
|
}
|
|
|
|
std::vector<std::shared_ptr<CandidateDevice>> findUsbDevices()
|
|
{
|
|
try
|
|
{
|
|
std::vector<std::shared_ptr<CandidateDevice>> candidates;
|
|
for (const auto& it : libusbp::list_connected_devices())
|
|
{
|
|
auto candidate = std::make_unique<CandidateDevice>();
|
|
candidate->device = it;
|
|
|
|
uint32_t id = (it.get_vendor_id() << 16) | it.get_product_id();
|
|
if (VALID_DEVICES.find(id) != VALID_DEVICES.end())
|
|
{
|
|
candidate->id = id;
|
|
candidate->serial = get_serial_number(it);
|
|
|
|
if (id == GREASEWEAZLE_ID)
|
|
candidate->type = DEVICE_GREASEWEAZLE;
|
|
else if (id == APPLESAUCE_ID)
|
|
candidate->type = DEVICE_APPLESAUCE;
|
|
else if (id == FLUXENGINE_ID)
|
|
candidate->type = DEVICE_FLUXENGINE;
|
|
|
|
if ((id == GREASEWEAZLE_ID) || (id == APPLESAUCE_ID))
|
|
{
|
|
libusbp::serial_port port(candidate->device);
|
|
candidate->serialPort = port.get_name();
|
|
}
|
|
|
|
candidates.push_back(std::move(candidate));
|
|
}
|
|
}
|
|
|
|
return candidates;
|
|
}
|
|
catch (const libusbp::error& e)
|
|
{
|
|
error("USB error: {}", e.message());
|
|
}
|
|
}
|
|
|
|
std::string getDeviceName(DeviceType type)
|
|
{
|
|
switch (type)
|
|
{
|
|
case DEVICE_GREASEWEAZLE:
|
|
return "Greaseweazle";
|
|
|
|
case DEVICE_FLUXENGINE:
|
|
return "FluxEngine";
|
|
|
|
case DEVICE_APPLESAUCE:
|
|
return "Applesauce";
|
|
|
|
default:
|
|
return "unknown";
|
|
}
|
|
}
|