Update NVIDIA ESA controller files to new standardized header comment
This commit is contained in:
parent
a7e76b5869
commit
1d766d4a10
5 changed files with 57 additions and 38 deletions
|
|
@ -1,13 +1,16 @@
|
|||
/*-----------------------------------------*\
|
||||
| NvidiaESAController.cpp |
|
||||
| |
|
||||
| Driver for Nvidia ESA lighting |
|
||||
| controller |
|
||||
| |
|
||||
| Guimard Morgan (morg) 2/18/2022 |
|
||||
\*-----------------------------------------*/
|
||||
#include "NvidiaESAController.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| NvidiaESAController.cpp |
|
||||
| |
|
||||
| Driver for NVIDIA ESA |
|
||||
| |
|
||||
| Morgan Guimard (morg) 18 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string.h>
|
||||
#include "NvidiaESAController.h"
|
||||
|
||||
NvidiaESAController::NvidiaESAController(hid_device* dev_handle, const hid_device_info& info)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
/*-----------------------------------------*\
|
||||
| NvidiaESAController.h |
|
||||
| |
|
||||
| Driver for Nvidia ESA lighting |
|
||||
| controller - header file |
|
||||
| |
|
||||
| Guimard Morgan (morg) 2/18/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| NvidiaESAController.h |
|
||||
| |
|
||||
| Driver for NVIDIA ESA |
|
||||
| |
|
||||
| Morgan Guimard (morg) 18 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include <string>
|
||||
#include <hidapi/hidapi.h>
|
||||
|
||||
#include "RGBController.h"
|
||||
|
||||
class NvidiaESAController
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,3 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| NvidiaESAControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for NVIDIA ESA |
|
||||
| |
|
||||
| Morgan Guimard (morg) 18 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "Detector.h"
|
||||
#include "NvidiaESAController.h"
|
||||
#include "RGBController.h"
|
||||
|
|
|
|||
|
|
@ -1,16 +1,17 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_NvidiaESA.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| Nvidia ESA USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 2/18/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_NvidiaESA.cpp |
|
||||
| |
|
||||
| RGBController for NVIDIA ESA |
|
||||
| |
|
||||
| Morgan Guimard (morg) 18 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_NvidiaESA.h"
|
||||
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
#include <thread>
|
||||
#include "RGBController_NvidiaESA.h"
|
||||
|
||||
/**------------------------------------------------------------------*\
|
||||
@name NVidia ESA
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_NvidiaESA.h |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| Nvidia ESA RGB USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 2/18/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_NvidiaESA.h |
|
||||
| |
|
||||
| RGBController for NVIDIA ESA |
|
||||
| |
|
||||
| Morgan Guimard (morg) 18 Feb 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue