This commit is contained in:
2024-10-30 18:20:16 +03:00
parent f14b4fdc10
commit 9cde583688
5 changed files with 125 additions and 16 deletions

View File

@@ -131,8 +131,11 @@ protected:
};
public:
DeviceWrapper() {
DeviceWrapper() : _id()
{
// null device
std::string_view is{"NULL-DEVICE"};
std::ranges::copy(_id, std::back_inserter(_id));
};
template <interfaces::adc_device_c DeviceT,