Support Reset (0x0020) feature
This commit is contained in:
parent
7ae46c938d
commit
ef0a0fab8d
|
@ -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)
|
||||
|
||||
|
|
42
src/logid/backend/hidpp20/features/Reset.cpp
Normal file
42
src/logid/backend/hidpp20/features/Reset.cpp
Normal file
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
#include "Reset.h"
|
||||
|
||||
using namespace logid::backend::hidpp20;
|
||||
|
||||
Reset::Reset(Device *device) : Feature(device, ID)
|
||||
{
|
||||
}
|
||||
|
||||
uint16_t Reset::getProfile()
|
||||
{
|
||||
std::vector<uint8_t> 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<uint8_t> params(2);
|
||||
params[0] = (profile >> 8) & 0xff;
|
||||
params[1] = profile & 0xff;
|
||||
callFunction(ResetToProfile, params);
|
||||
}
|
47
src/logid/backend/hidpp20/features/Reset.h
Normal file
47
src/logid/backend/hidpp20/features/Reset.h
Normal file
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
#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
|
Loading…
Reference in New Issue
Block a user