From b3379e8ef39b6e13e77705b6bbc2e3571b3d4a0e Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Fri, 14 Jun 2024 11:34:22 -0500 Subject: [PATCH] Update Roccat Kone Aimo controller files to new standardized header comment --- .../RGBController_RoccatKoneAimo.cpp | 18 +++++++------- .../RGBController_RoccatKoneAimo.h | 19 ++++++++------- .../RoccatKoneAimoController.cpp | 21 ++++++++-------- .../RoccatKoneAimoController.h | 24 ++++++++++--------- 4 files changed, 45 insertions(+), 37 deletions(-) diff --git a/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.cpp b/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.cpp index d713e418..b7ac79f2 100644 --- a/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.cpp +++ b/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.cpp @@ -1,11 +1,13 @@ -/*-----------------------------------------*\ -| RGBController_RoccatKoneAimo.cpp | -| | -| Generic RGB Interface for OpenRGB | -| | -| | -| Thibaud M (enlight3d) 17/11/2020 | -\*-----------------------------------------*/ +/*---------------------------------------------------------*\ +| RGBController_RoccatKoneAimo.cpp | +| | +| RGBController for Roccat Kone Aimo | +| | +| Thibaud M (enlight3d) 17 Nov 2020 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ #include "RGBController_RoccatKoneAimo.h" diff --git a/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.h b/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.h index 17cc3c2b..b273db2b 100644 --- a/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.h +++ b/Controllers/RoccatController/RoccatKoneAimoController/RGBController_RoccatKoneAimo.h @@ -1,13 +1,16 @@ -/*-----------------------------------------*\ -| RGBController_RoccatKoneAimo.h | -| | -| Generic RGB Interface for Roccat Kone | -| Aimo controller | -| | -| Thibaud M (enlight3d) 17/11/2020 | -\*-----------------------------------------*/ +/*---------------------------------------------------------*\ +| RGBController_RoccatKoneAimo.h | +| | +| RGBController for Roccat Kone Aimo | +| | +| Thibaud M (enlight3d) 17 Nov 2020 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ #pragma once + #include "RGBController.h" #include "RoccatKoneAimoController.h" diff --git a/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.cpp b/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.cpp index 3ae2dfd9..59206409 100644 --- a/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.cpp +++ b/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.cpp @@ -1,15 +1,16 @@ -/*-------------------------------------------------------------------*\ -| RoccatKoneAimoController.cpp | -| | -| Driver for Roccat Kone Aimo Mouse | -| | -| Thibaud M (enlight3d) 17th Nov 2020 | -| | -\*-------------------------------------------------------------------*/ - -#include "RoccatKoneAimoController.h" +/*---------------------------------------------------------*\ +| RoccatKoneAimoController.cpp | +| | +| Driver for Roccat Kone Aimo | +| | +| Thibaud M (enlight3d) 17 Nov 2020 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ #include +#include "RoccatKoneAimoController.h" RoccatKoneAimoController::RoccatKoneAimoController(hid_device* dev_handle, char *_path) { diff --git a/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.h b/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.h index 2b3d0b51..33b1279b 100644 --- a/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.h +++ b/Controllers/RoccatController/RoccatKoneAimoController/RoccatKoneAimoController.h @@ -1,20 +1,22 @@ -/*-------------------------------------------------------------------*\ -| RoccatKoneAimoController.h | -| | -| Driver for Roccat Kone Aimo Mouse | -| | -| Thibaud M (enlight3d) 17th Nov 2020 | -| | -\*-------------------------------------------------------------------*/ +/*---------------------------------------------------------*\ +| RoccatKoneAimoController.h | +| | +| Driver for Roccat Kone Aimo | +| | +| Thibaud M (enlight3d) 17 Nov 2020 | +| | +| This file is part of the OpenRGB project | +| SPDX-License-Identifier: GPL-2.0-only | +\*---------------------------------------------------------*/ #pragma once -#include "RGBController.h" -#include #include #include +#include #include #include +#include "RGBController.h" #define NUM_LEDS 11 @@ -54,4 +56,4 @@ private: unsigned char usb_colors_buf[USB_COLOR_BUFF_LEN]; // USB buffer to be sent everytime we update mouse's LEDs void SendInit(); -}; \ No newline at end of file +};