Update Lian Li Uni Hub SL Infinity controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 13:23:01 -05:00
parent 3806a8ae04
commit 86784b983c
4 changed files with 56 additions and 52 deletions

View file

@ -1,18 +1,19 @@
/*-----------------------------------------*\
| LianLiUniHubSLInfinityController.cpp |
| |
| Driver for Lian Li Uni Hub SL INF USB |
| lighting controller |
| |
| Simon McKenna 2023-20-21 |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "LianLiUniHubSLInfinityController.h"
/*---------------------------------------------------------*\
| LianLiUniHubSLInfinityController.cpp |
| |
| Driver for Lian Li SL Infinity Uni Hub |
| |
| Simon McKenna 21 Oct 2023 |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string.h>
#include "LianLiUniHubSLInfinityController.h"
using namespace std::chrono_literals;

View file

@ -1,20 +1,22 @@
/*----------------------------------------------*\
| LianLiHubSLInfinityController.h |
| |
| Definitions and types for Lian Li SL Infinity |
| |
| Simon McKenna 2023-20-21 |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*----------------------------------------------*/
/*---------------------------------------------------------*\
| LianLiUniHubSLInfinityController.h |
| |
| Driver for Lian Li SL Infinity Uni Hub |
| |
| Simon McKenna 21 Oct 2023 |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController.h"
#pragma once
#include <string>
#include <hidapi/hidapi.h>
#pragma once
#include "RGBController.h"
/*----------------------------------------------------------------------------*\
| Global definitions. |
@ -24,7 +26,6 @@
| Definitions related to zone Sizes |
\*----------------------------------------------------------------------------*/
enum
{
UNIHUB_SLINF_CHANNEL_COUNT = 0x08, /* Channel count */

View file

@ -1,18 +1,19 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHubSLInfinity.cpp |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub SLINF USB controller driver |
| |
| Simon McKenna 2023-20-21 |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "RGBController_LianLiUniHubSLInfinity.h"
/*---------------------------------------------------------*\
| RGBController_LianLiUniHubSLInfinity.cpp |
| |
| RGBController for Lian Li SL Infinity Uni Hub |
| |
| Simon McKenna 21 Oct 2023 |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string>
#include "RGBController_LianLiUniHubSLInfinity.h"
/**------------------------------------------------------------------*\
@name Lian Li Uni Hub SL Infinity

View file

@ -1,20 +1,21 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHubSLInfinity.h |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub SL Infinity USB controller driver |
| |
| Simon McKenna 2023-20-21 |
| Will Kennedy 01/17/2023 |
| Oliver P 04/26/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LianLiUniHubSLInfinity.h |
| |
| RGBController for Lian Li SL Infinity Uni Hub |
| |
| Simon McKenna 21 Oct 2023 |
| Will Kennedy 17 Jan 2023 |
| Oliver P 26 Apr 2022 |
| Credit to Luca Lovisa for original work. |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <cstdint>
#include <vector>
#include "LianLiUniHubSLInfinityController.h"
#include "RGBController.h"