Update EVGA V2 GPU controller files to new standardized header comment
This commit is contained in:
parent
211497193d
commit
b93e6be0b0
5 changed files with 56 additions and 37 deletions
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| EVGAGPUv2Controller.cpp |
|
||||
| |
|
||||
| Driver for EVGA GPU RGB V2 (Turing) |
|
||||
| lighting controller |
|
||||
| |
|
||||
| TheRogueZeta 4/15/2021 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| EVGAGPUv2Controller.cpp |
|
||||
| |
|
||||
| Driver for EVGA V2 (Turing) GPU |
|
||||
| |
|
||||
| TheRogueZeta 15 Apr 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "EVGAGPUv2Controller.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,18 +1,20 @@
|
|||
/*-----------------------------------------*\
|
||||
| EVGAGPUv2Controller.h |
|
||||
| |
|
||||
| Definitions and types for EVGA GPU RGB |
|
||||
| V2 (Turing) lighting controller |
|
||||
| |
|
||||
| TheRogueZeta 4/15/2021 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| EVGAGPUv2Controller.h |
|
||||
| |
|
||||
| Driver for EVGA V2 (Turing) GPU |
|
||||
| |
|
||||
| TheRogueZeta 15 Apr 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "i2c_smbus.h"
|
||||
#include "RGBController.h"
|
||||
|
||||
#pragma once
|
||||
|
||||
typedef unsigned char evga_dev_id;
|
||||
|
||||
#define SPEED_MULTIPLIER 10
|
||||
|
|
|
|||
|
|
@ -1,12 +1,23 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| EVGATuringGPUControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for EVGA V2 (Turing) GPU |
|
||||
| |
|
||||
| TheRogueZeta 15 Apr 2021 |
|
||||
| |
|
||||
| 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 "EVGAGPUv2Controller.h"
|
||||
#include "RGBController.h"
|
||||
#include "RGBController_EVGAGPUv2.h"
|
||||
#include "i2c_smbus.h"
|
||||
#include "pci_ids.h"
|
||||
#include <vector>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
/******************************************************************************************\
|
||||
* *
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_EVGAGPUv2.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB EVGA |
|
||||
| GPU V2 (Turing) Driver |
|
||||
| |
|
||||
| TheRogueZeta 4/15/2021 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_EVGAGPUv2.cpp |
|
||||
| |
|
||||
| RGBController for EVGA V2 (Turing) GPU |
|
||||
| |
|
||||
| TheRogueZeta 15 Apr 2021 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_EVGAGPUv2.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_EVGAGPUv2.h |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| EVGA GPU RGB V2 (Turing) Driver |
|
||||
| |
|
||||
| TheRogueZeta 4/15/2021 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_EVGAGPUv2.h |
|
||||
| |
|
||||
| RGBController for EVGA V2 (Turing) GPU |
|
||||
| |
|
||||
| TheRogueZeta 15 Apr 2021 |
|
||||
| |
|
||||
| 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