Update Roccat Burst controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-07 11:45:43 -05:00
parent 7d1106171c
commit d637d0f850
4 changed files with 43 additions and 33 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_RoccatBurst.cpp | | RGBController_RoccatBurst.cpp |
| | | |
| Generic RGB Interface for OpenRGB | | RGBController for Roccat Burst |
| | | |
| | | Morgan Guimard (morg) 01 Jun 2022 |
| Morgan Guimard (morg) 6/01/2022 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_RoccatBurst.h" #include "RGBController_RoccatBurst.h"

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\ /*---------------------------------------------------------*\
| RGBController_RoccatBurst.h | | RGBController_RoccatBurst.h |
| | | |
| Generic RGB Interface for Roccat Burst | | RGBController for Roccat Burst |
| Core and Pro Mouse controller | | |
| | | Morgan Guimard (morg) 01 Jun 2022 |
| Morgan Guimard (morg) 6/01/2022 | | |
\*-----------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once #pragma once
#include "RGBController.h" #include "RGBController.h"
#include "RoccatBurstController.h" #include "RoccatBurstController.h"

View file

@ -1,15 +1,16 @@
/*-------------------------------------------------------------------*\ /*---------------------------------------------------------*\
| RoccatBurstController.cpp | | RoccatBurstController.cpp |
| | | |
| Driver for Roccat Burst Core and Pro Mouse | | Driver for Roccat Burst |
| | | |
| Morgan Guimard (morg) 2/24/2022 | | Morgan Guimard (morg) 24 Feb 2022 |
| | | |
\*-------------------------------------------------------------------*/ | This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
#include "RoccatBurstController.h" \*---------------------------------------------------------*/
#include <cstring> #include <cstring>
#include "RoccatBurstController.h"
RoccatBurstController::RoccatBurstController(hid_device* dev_handle, const hid_device_info& info) RoccatBurstController::RoccatBurstController(hid_device* dev_handle, const hid_device_info& info)
{ {

View file

@ -1,10 +1,13 @@
/*-------------------------------------------------------------------*\ /*---------------------------------------------------------*\
| RoccatBurstController.h | | RoccatBurstController.h |
| | | |
| Driver for Roccat Burst Core and Pro Mouse | | Driver for Roccat Burst |
| | | |
| Morgan Guimard (morg) 6/01/2022 | | Morgan Guimard (morg) 01 Jun 2022 |
\*-------------------------------------------------------------------*/ | |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once #pragma once
@ -19,6 +22,7 @@
#define ROCCAT_BURST_DIRECT_MODE_BYTE 0x0B #define ROCCAT_BURST_DIRECT_MODE_BYTE 0x0B
#define ROCCAT_BURST_CORE_NUMBER_OF_LEDS 1 #define ROCCAT_BURST_CORE_NUMBER_OF_LEDS 1
#define ROCCAT_BURST_PRO_NUMBER_OF_LEDS 2 #define ROCCAT_BURST_PRO_NUMBER_OF_LEDS 2
enum enum
{ {
ROCCAT_BURST_DIRECT_MODE_VALUE = 0x00, ROCCAT_BURST_DIRECT_MODE_VALUE = 0x00,