#pragma once #include "ComplexCommand.h" #include #include "DeviceChannelTypeInfo.h" #include "SignalLsbInfo.h" #include "CalibrationInfo.h" namespace Incart::Usb { class ReadInnerChannelsLsbCommand : public ComplexCommand { Q_OBJECT public: ReadInnerChannelsLsbCommand(uint32_t uid) : ComplexCommand("ReadInnerChannelsLsb", uid) { } signals: void answerIsReady(ComplexCommand* command, std::unordered_map> calibrationInfo, std::shared_ptr status); }; } // namespace Incart::Usb