diff --git a/src/logid/CMakeLists.txt b/src/logid/CMakeLists.txt index 043f859..86d9086 100644 --- a/src/logid/CMakeLists.txt +++ b/src/logid/CMakeLists.txt @@ -31,6 +31,7 @@ add_executable(logid backend/hidpp20/features/Root.cpp backend/hidpp20/features/FeatureSet.cpp backend/hidpp20/features/DeviceName.cpp + backend/hidpp20/features/Reset.cpp backend/dj/Report.cpp util/mutex_queue.h) diff --git a/src/logid/backend/hidpp20/features/Reset.cpp b/src/logid/backend/hidpp20/features/Reset.cpp new file mode 100644 index 0000000..3512055 --- /dev/null +++ b/src/logid/backend/hidpp20/features/Reset.cpp @@ -0,0 +1,42 @@ +/* + * Copyright 2019-2020 PixlOne + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#include "Reset.h" + +using namespace logid::backend::hidpp20; + +Reset::Reset(Device *device) : Feature(device, ID) +{ +} + +uint16_t Reset::getProfile() +{ + std::vector params(0); + auto results = callFunction(GetProfile, params); + + uint16_t profile = results[1]; + profile |= (results[0] << 8); + return profile; +} + +void Reset::reset(uint16_t profile) +{ + std::vector params(2); + params[0] = (profile >> 8) & 0xff; + params[1] = profile & 0xff; + callFunction(ResetToProfile, params); +} \ No newline at end of file diff --git a/src/logid/backend/hidpp20/features/Reset.h b/src/logid/backend/hidpp20/features/Reset.h new file mode 100644 index 0000000..a3b6e14 --- /dev/null +++ b/src/logid/backend/hidpp20/features/Reset.h @@ -0,0 +1,47 @@ +/* + * Copyright 2019-2020 PixlOne + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + */ +#ifndef LOGID_BACKEND_HIDPP20_FEATURE_RESET_H +#define LOGID_BACKEND_HIDPP20_FEATURE_RESET_H + +#include "../Feature.h" +#include "../feature_defs.h" + +namespace logid { +namespace backend { +namespace hidpp20 +{ + class Reset : public Feature + { + public: + static const uint16_t ID = FeatureID::RESET; + virtual uint16_t getID() { return ID; } + + enum Function : uint8_t + { + GetProfile = 0, + ResetToProfile = 1 + }; + + explicit Reset(Device* device); + + uint16_t getProfile(); + void reset(uint16_t profile = 0); + }; +}}} + +#endif //LOGID_BACKEND_HIDPP20_FEATURE_RESET_H