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

This commit is contained in:
Adam Honse 2024-05-25 13:09:01 -05:00
parent be6e890402
commit 58f9943151
4 changed files with 47 additions and 44 deletions

View file

@ -1,16 +1,17 @@
/*-----------------------------------------*\
| LianLiUniHub_AL10Controller.cpp |
| |
| Driver for Lian Li Uni Hub USB |
| lighting controller |
| |
| Oliver P 05/05/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "LianLiUniHub_AL10Controller.h"
/*---------------------------------------------------------*\
| LianLiUniHub_AL10Controller.cpp |
| |
| Driver for Lian Li AL10 Uni Hub |
| |
| Oliver P 05 May 2022 |
| Credit to Luca Lovisa for original work |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <cstring>
#include "LianLiUniHub_AL10Controller.h"
using namespace std::chrono_literals;

View file

@ -1,22 +1,22 @@
/*-----------------------------------------*\
| LianLiUniHub_AL10Controller.h |
| |
| Definitions and types for Lian Li Uni |
| Hub USB RGB lighting controller |
| |
| Oliver P 05/05/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| LianLiUniHub_AL10Controller.h |
| |
| Driver for Lian Li AL10 Uni Hub |
| |
| Oliver P 05 May 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 <mutex>
#include <string>
#include "RGBController.h"
#include <libusb-1.0/libusb.h>
#include "RGBController.h"
/*----------------------------------------------------------------------------*\
| Global definitions. |

View file

@ -1,16 +1,17 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHub_AL10.cpp |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub USB controller driver |
| |
| Oliver P 05/05/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
#include "RGBController_LianLiUniHub_AL10.h"
/*---------------------------------------------------------*\
| RGBController_LianLiUniHub_AL10.cpp |
| |
| RGBController for Lian Li AL10 Uni Hub |
| |
| Oliver P 05 May 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_LianLiUniHub_AL10.h"
/**------------------------------------------------------------------*\
@name Lian Li Uni Hub

View file

@ -1,18 +1,19 @@
/*-----------------------------------------*\
| RGBController_LianLiUniHub_AL10.h |
| |
| Generic RGB Interface for Lian Li Uni |
| Hub USB controller driver |
| |
| Oliver P 05/05/2022 |
| Credit to Luca Lovisa for original work. |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LianLiUniHub_AL10.h |
| |
| RGBController for Lian Li AL10 Uni Hub |
| |
| Oliver P 05 May 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 "LianLiUniHub_AL10Controller.h"
#include "RGBController.h"