Update all Corsair controller files to use new standardized file header comment

This commit is contained in:
Adam Honse 2024-05-14 19:14:09 -05:00
parent fc97d6130b
commit da8469f478
77 changed files with 831 additions and 551 deletions

View file

@ -1,17 +1,19 @@
/*---------------------------------------------------------*\
| CorsairCommanderCoreController.cpp |
| CorsairCommanderCoreController.cpp |
| |
| Processing Code for Corsair Commander Core |
| Driver for Corsair Commander Core |
| |
| Jeff P. |
| Jeff P. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "CorsairCommanderCoreController.h"
#include "CorsairDeviceGuard.h"
#include <cstring>
#include <iomanip>
#include <iostream>
#include "CorsairCommanderCoreController.h"
#include "CorsairDeviceGuard.h"
using namespace std::chrono_literals;
@ -24,7 +26,7 @@ CorsairCommanderCoreController::CorsairCommanderCoreController(hid_device* dev_h
packet_size = CORSAIR_COMMANDER_CORE_PACKET_SIZE_V2;
command_res_size = packet_size - 4;
this->pid = pid;
guard_manager_ptr = new DeviceGuardManager(new CorsairDeviceGuard());
guard_manager_ptr = new DeviceGuardManager(new CorsairDeviceGuard());
/*-----------------------------------------------------*\
| Initialize controller |

View file

@ -1,22 +1,22 @@
/*---------------------------------------------------------*\
| CorsairCommanderCoreController.h |
| CorsairCommanderCoreController.h |
| |
| Definitions for Corsair Commander Core |
| Based on code by: |
| Adam Honse (calcprogrammer1@gmail.com), 8/17/2020 |
| Driver for Corsair Commander Core |
| |
| Jeff P. |
| 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/hidapi.h>
#include "RGBController.h"
#include "DeviceGuardManager.h"
#include <vector>
#include <chrono>
#include <hidapi/hidapi.h>
#pragma once
#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

View file

@ -1,9 +1,20 @@
/*---------------------------------------------------------*\
| CorsairCommanderCoreControllerDetect.cpp |
| |
| Detector for Corsair Commander Core |
| |
| Jeff P. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <vector>
#include <hidapi/hidapi.h>
#include "Detector.h"
#include "CorsairCommanderCoreController.h"
#include "RGBController.h"
#include "RGBController_CorsairCommanderCore.h"
#include <vector>
#include <hidapi/hidapi.h>
/*-----------------------------------------------------*\
| Corsair vendor ID |

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_CorsairCapellix.cpp |
| |
| Generic RGB Interface for Corsair |
| Commander Core |
| |
| Jeff P. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_CorsairCCommanderCore.cpp |
| |
| RGBController for Corsair Commander Core |
| |
| Jeff P. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_CorsairCommanderCore.h"

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\
| RGBController_CorsairCapellix.h |
| |
| Generic RGB Interface for Corsair |
| Commander Core |
| |
| Jeff P. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_CorsairCCommanderCore.h |
| |
| RGBController for Corsair Commander Core |
| |
| Jeff P. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "CorsairCommanderCoreController.h"