Add USB stub, add logging using spdlog

This commit is contained in:
2022-11-12 15:28:21 +01:00
parent 4809f60d2c
commit 815e67bdfb
8 changed files with 106 additions and 7 deletions

20
inc/Usb.hpp Normal file
View File

@@ -0,0 +1,20 @@
#include "IUsb.hpp"
#include <libusb-1.0/libusb.h>
#pragma once
namespace ptprnt::driver {
class Usb : public IUsb {
public:
Usb();
~Usb() override;
std::vector<UsbDevice> listDevices() override;
private:
};
} // namespace ptprnt::driver