Add SmartShift hidpp20 feature
This commit is contained in:
parent
07b8fc1af4
commit
5abf777e00
|
@ -35,6 +35,7 @@ add_executable(logid
|
||||||
backend/hidpp20/features/DeviceName.cpp
|
backend/hidpp20/features/DeviceName.cpp
|
||||||
backend/hidpp20/features/Reset.cpp
|
backend/hidpp20/features/Reset.cpp
|
||||||
backend/hidpp20/features/AdjustableDPI.cpp
|
backend/hidpp20/features/AdjustableDPI.cpp
|
||||||
|
backend/hidpp20/features/SmartShift.cpp
|
||||||
backend/dj/Report.cpp
|
backend/dj/Report.cpp
|
||||||
util/mutex_queue.h
|
util/mutex_queue.h
|
||||||
util/thread.cpp
|
util/thread.cpp
|
||||||
|
|
47
src/logid/backend/hidpp20/features/SmartShift.cpp
Normal file
47
src/logid/backend/hidpp20/features/SmartShift.cpp
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/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "SmartShift.h"
|
||||||
|
|
||||||
|
using namespace logid::backend::hidpp20;
|
||||||
|
|
||||||
|
SmartShift::SmartShift(Device* dev) : Feature(dev, ID)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
SmartShift::SmartshiftStatus SmartShift::getStatus()
|
||||||
|
{
|
||||||
|
std::vector<uint8_t> params(0);
|
||||||
|
SmartshiftStatus status{};
|
||||||
|
auto response = callFunction(GetStatus, params);
|
||||||
|
status.active = response[0]-1;
|
||||||
|
status.autoDisengage = response[1];
|
||||||
|
status.defaultAutoDisengage = response[2];
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
void SmartShift::setStatus(SmartshiftStatus status)
|
||||||
|
{
|
||||||
|
std::vector<uint8_t> params(3);
|
||||||
|
if(status.setActive)
|
||||||
|
params[0] = status.active + 1;
|
||||||
|
if(status.setAutoDisengage)
|
||||||
|
params[1] = status.autoDisengage;
|
||||||
|
if(status.setDefaultAutoDisengage)
|
||||||
|
params[2] = status.defaultAutoDisengage;
|
||||||
|
callFunction(SetStatus, params);
|
||||||
|
}
|
54
src/logid/backend/hidpp20/features/SmartShift.h
Normal file
54
src/logid/backend/hidpp20/features/SmartShift.h
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
* 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_SMARTSHIFT_H
|
||||||
|
#define LOGID_BACKEND_HIDPP20_FEATURE_SMARTSHIFT_H
|
||||||
|
|
||||||
|
#include "../feature_defs.h"
|
||||||
|
#include "../Feature.h"
|
||||||
|
|
||||||
|
namespace logid {
|
||||||
|
namespace backend {
|
||||||
|
namespace hidpp20
|
||||||
|
{
|
||||||
|
class SmartShift : public Feature
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static const uint16_t ID = FeatureID::SMART_SHIFT;
|
||||||
|
virtual uint16_t getID() { return ID; }
|
||||||
|
|
||||||
|
enum Function {
|
||||||
|
GetStatus = 0,
|
||||||
|
SetStatus = 1
|
||||||
|
};
|
||||||
|
|
||||||
|
SmartShift(Device* dev);
|
||||||
|
|
||||||
|
struct SmartshiftStatus
|
||||||
|
{
|
||||||
|
bool active;
|
||||||
|
uint8_t autoDisengage;
|
||||||
|
uint8_t defaultAutoDisengage;
|
||||||
|
bool setActive, setAutoDisengage, setDefaultAutoDisengage;
|
||||||
|
};
|
||||||
|
|
||||||
|
SmartshiftStatus getStatus();
|
||||||
|
void setStatus(SmartshiftStatus status);
|
||||||
|
};
|
||||||
|
}}}
|
||||||
|
|
||||||
|
#endif //LOGID_BACKEND_HIDPP20_FEATURE_SMARTSHIFT_H
|
Loading…
Reference in New Issue
Block a user