Update EVGA V1 GPU controller files to new standardized header comment
This commit is contained in:
parent
794f6a81e9
commit
211497193d
5 changed files with 56 additions and 38 deletions
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| EVGAGPUv1Controller.cpp |
|
||||
| |
|
||||
| Driver for EVGA GPU RGB V1 (Pascal) |
|
||||
| lighting controller |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 9/11/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| EVGAGPUv1Controller.cpp |
|
||||
| |
|
||||
| Driver for EVGA V1 (Pascal) GPU |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 11 Sep 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "EVGAGPUv1Controller.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
/*-----------------------------------------*\
|
||||
| EVGAGPUv1Controller.h |
|
||||
| |
|
||||
| Definitions and types for EVGA GPU RGB |
|
||||
| V1 (Pascal) lighting controller |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 9/11/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| EVGAGPUv1Controller.h |
|
||||
| |
|
||||
| Driver for EVGA V1 (Pascal) GPU |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 11 Sep 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "i2c_smbus.h"
|
||||
|
||||
#pragma once
|
||||
|
||||
typedef unsigned char evga_dev_id;
|
||||
|
||||
#define EVGAGPUV1_CONTROLLER_NAME "EVGAv1"
|
||||
|
|
@ -52,5 +54,4 @@ public:
|
|||
private:
|
||||
i2c_smbus_interface* bus;
|
||||
evga_dev_id dev;
|
||||
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,17 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| EVGAGPUv1ControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for EVGA V1 (Pascal) GPU |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 11 Sep 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
#include "Detector.h"
|
||||
#include "EVGAGPUv1Controller.h"
|
||||
#include "LogManager.h"
|
||||
|
|
@ -5,9 +19,6 @@
|
|||
#include "RGBController_EVGAGPUv1.h"
|
||||
#include "i2c_smbus.h"
|
||||
#include "pci_ids.h"
|
||||
#include <vector>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_EVGAGPUv1.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB EVGA |
|
||||
| GPU V1 (Pascal) Driver |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 9/11/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_EVGAGPUv1.cpp |
|
||||
| |
|
||||
| RGBController for EVGA V1 (Pascal) GPU |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 11 Sep 2020 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_EVGAGPUv1.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_EVGAGPUv1.h |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| EVGA GPU RGB V1 (Pascal) Driver |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 9/11/2020 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_EVGAGPUv1.h |
|
||||
| |
|
||||
| RGBController for EVGA V1 (Pascal) GPU |
|
||||
| |
|
||||
| Adam Honse (CalcProgrammer1) 11 Sep 2020 |
|
||||
| |
|
||||
| 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