Add USB stub, add logging using spdlog

This commit is contained in:
2022-11-12 15:28:21 +01:00
parent f65b643081
commit 2770a2a2cc
8 changed files with 106 additions and 7 deletions

16
inc/IUsb.hpp Normal file
View File

@@ -0,0 +1,16 @@
#include "UsbTypes.hpp"
#include <vector>
#pragma once
namespace ptprnt::driver {
class IUsb {
public:
virtual ~IUsb(){};
virtual std::vector<UsbDevice> listDevices() = 0;
};
} // namespace ptprnt::driver