Update Lian Li Uni Hub controller files to new standardized header comment
This commit is contained in:
parent
edbcc38518
commit
3806a8ae04
4 changed files with 44 additions and 39 deletions
|
|
@ -1,15 +1,16 @@
|
|||
/*-----------------------------------------*\
|
||||
| LianLiUniHubController.cpp |
|
||||
| |
|
||||
| Driver for Lian Li Uni Hub USB |
|
||||
| lighting controller |
|
||||
| |
|
||||
| Luca Lovisa 2/20/2021 |
|
||||
\*-----------------------------------------*/
|
||||
|
||||
#include "LianLiUniHubController.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| LianLiUniHubController.cpp |
|
||||
| |
|
||||
| Driver for Lian Li Uni Hub |
|
||||
| |
|
||||
| Luca Lovisa 20 Feb 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <cstring>
|
||||
#include "LianLiUniHubController.h"
|
||||
|
||||
using namespace std::chrono_literals;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| LianLiUniHubController.h |
|
||||
| |
|
||||
| Definitions and types for Lian Li Uni |
|
||||
| Hub USB RGB lighting controller |
|
||||
| |
|
||||
| Luca Lovisa 2/20/2021 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| LianLiUniHubController.h |
|
||||
| |
|
||||
| Driver for Lian Li Uni Hub |
|
||||
| |
|
||||
| Luca Lovisa 20 Feb 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
|
|
@ -13,14 +15,14 @@
|
|||
#include <mutex>
|
||||
#include <string>
|
||||
|
||||
#include "RGBController.h"
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include <libusb.h>
|
||||
#else
|
||||
#include <libusb-1.0/libusb.h>
|
||||
#endif
|
||||
|
||||
#include "RGBController.h"
|
||||
|
||||
/*----------------------------------------------------------------------------*\
|
||||
| Global definitions. |
|
||||
\*----------------------------------------------------------------------------*/
|
||||
|
|
|
|||
|
|
@ -1,15 +1,16 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_LianLiUniHub.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for Lian Li Uni |
|
||||
| Hub USB controller driver |
|
||||
| |
|
||||
| Luca Lovisa 2/20/2021 |
|
||||
\*-----------------------------------------*/
|
||||
|
||||
#include "RGBController_LianLiUniHub.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_LianLiUniHub.cpp |
|
||||
| |
|
||||
| RGBController for Lian Li Uni Hub |
|
||||
| |
|
||||
| Luca Lovisa 20 Feb 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string>
|
||||
#include "RGBController_LianLiUniHub.h"
|
||||
|
||||
mode makeMode()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_LianLiUniHub.h |
|
||||
| |
|
||||
| Generic RGB Interface for Lian Li Uni |
|
||||
| Hub USB controller driver |
|
||||
| |
|
||||
| Luca Lovisa 2/20/2021 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_LianLiUniHub.h |
|
||||
| |
|
||||
| RGBController for Lian Li Uni Hub |
|
||||
| |
|
||||
| Luca Lovisa 20 Feb 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
|
||||
#include "LianLiUniHubController.h"
|
||||
#include "RGBController.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue