73 lines
3 KiB
C++
73 lines
3 KiB
C++
/*---------------------------------------------------------*\
|
|
| CorsairCommanderCoreController.h |
|
|
| |
|
|
| Driver for Corsair Commander Core |
|
|
| |
|
|
| Jeff P. |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <vector>
|
|
#include <hidapi.h>
|
|
#include "RGBController.h"
|
|
#include "DeviceGuardManager.h"
|
|
|
|
#define CORSAIR_COMMANDER_CORE_PACKET_SIZE_V1 1025 // First bit is the report bit
|
|
#define CORSAIR_COMMANDER_CORE_PACKET_SIZE_V2 97 // First bit is the report bit
|
|
#define CORSAIR_COMMANDER_CORE_PACKET_SIZE_V3 65 // First bit is the report bit
|
|
|
|
#define CORSAIR_COMMANDER_CORE_RGB_DATA_LENGTH 699
|
|
#define CORSAIR_QL_FAN_ZONE_OFFSET 102
|
|
#define CORSAIR_COMMANDER_CORE_NUM_CHANNELS 6
|
|
|
|
enum
|
|
{
|
|
CORSAIR_COMMANDER_CORE_MODE_DIRECT = 0x00,
|
|
};
|
|
|
|
class CorsairCommanderCoreController
|
|
{
|
|
public:
|
|
CorsairCommanderCoreController(hid_device* dev_handle, const char* path, int pid);
|
|
~CorsairCommanderCoreController();
|
|
|
|
std::string GetFirmwareString();
|
|
std::vector<unsigned short int> GetLedCounts();
|
|
std::string GetLocationString();
|
|
|
|
void SetDirectColor
|
|
(
|
|
std::vector<RGBColor>,
|
|
std::vector<zone>
|
|
);
|
|
|
|
void KeepaliveThread();
|
|
void SetFanMode();
|
|
|
|
private:
|
|
hid_device* dev;
|
|
std::thread* keepalive_thread;
|
|
std::atomic<bool> keepalive_thread_run;
|
|
std::atomic<bool> controller_ready;
|
|
std::string location;
|
|
std::vector<RGBColor> lastcolors;
|
|
std::vector<zone> lastzones;
|
|
unsigned short int version[3] = {0, 0, 0};
|
|
int packet_size;
|
|
int command_res_size;
|
|
int pid;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_commit_time;
|
|
DeviceGuardManager* guard_manager_ptr;
|
|
|
|
void SendCommand(unsigned char command[2], unsigned char data[], unsigned short int data_len, unsigned char res[]);
|
|
void WriteData(unsigned char endpoint[2], unsigned char data_type[2], unsigned char data[], unsigned short int data_len);
|
|
void ReadData(unsigned char endpoint[2], unsigned char data[]);
|
|
|
|
void SendCommit();
|
|
void InitController();
|
|
};
|