Update Zotac V2 GPU controller files to new standardized header comment
This commit is contained in:
parent
494769177f
commit
7eaae7cf7d
5 changed files with 54 additions and 35 deletions
|
|
@ -1,15 +1,17 @@
|
||||||
/*-----------------------------------------*\
|
/*---------------------------------------------------------*\
|
||||||
| RGBController_ZotacV2GPU.cpp |
|
| RGBController_ZotacV2GPU.cpp |
|
||||||
| |
|
| |
|
||||||
| Generic RGB Interface for OpenRGB |
|
| RGBController for Zotac V2 GPU |
|
||||||
| ZOTAC RTX 30/40 series GPU Driver |
|
| |
|
||||||
| |
|
| Krzysztof Haładyn (krzys_h) 16 Mar 2023 |
|
||||||
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
|
| |
|
||||||
\*-----------------------------------------*/
|
| This file is part of the OpenRGB project |
|
||||||
|
| SPDX-License-Identifier: GPL-2.0-only |
|
||||||
|
\*---------------------------------------------------------*/
|
||||||
|
|
||||||
|
#include <map>
|
||||||
#include "RGBController_ZotacV2GPU.h"
|
#include "RGBController_ZotacV2GPU.h"
|
||||||
#include "LogManager.h"
|
#include "LogManager.h"
|
||||||
#include <map>
|
|
||||||
|
|
||||||
std::map<std::string, ZotacV2GPUConfig> ZOTAC_V2_GPU_CONFIG =
|
std::map<std::string, ZotacV2GPUConfig> ZOTAC_V2_GPU_CONFIG =
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
/*-----------------------------------------*\
|
/*---------------------------------------------------------*\
|
||||||
| RGBController_ZotacV2GPU.h |
|
| RGBController_ZotacV2GPU.h |
|
||||||
| |
|
| |
|
||||||
| Generic RGB Interface for OpenRGB |
|
| RGBController for Zotac V2 GPU |
|
||||||
| ZOTAC RTX 30/40 series GPU Driver |
|
| |
|
||||||
| |
|
| Krzysztof Haładyn (krzys_h) 16 Mar 2023 |
|
||||||
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
|
| |
|
||||||
\*-----------------------------------------*/
|
| This file is part of the OpenRGB project |
|
||||||
|
| SPDX-License-Identifier: GPL-2.0-only |
|
||||||
|
\*---------------------------------------------------------*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,13 @@
|
||||||
/*------------------------------------------*\
|
/*---------------------------------------------------------*\
|
||||||
| ZotacV2GPUController.cpp |
|
| ZotacV2GPUController.cpp |
|
||||||
| |
|
| |
|
||||||
| Driver for ZOTAC GeForce RTX 30/40 series |
|
| Driver for Zotac V2 GPU |
|
||||||
| GPU lighting controller |
|
| |
|
||||||
| |
|
| Krzysztof Haładyn (krzys_h) 16 Mar 2023 |
|
||||||
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
|
| |
|
||||||
\*------------------------------------------*/
|
| This file is part of the OpenRGB project |
|
||||||
|
| SPDX-License-Identifier: GPL-2.0-only |
|
||||||
|
\*---------------------------------------------------------*/
|
||||||
|
|
||||||
#include "ZotacV2GPUController.h"
|
#include "ZotacV2GPUController.h"
|
||||||
#include "LogManager.h"
|
#include "LogManager.h"
|
||||||
|
|
|
||||||
|
|
@ -1,18 +1,20 @@
|
||||||
/*-----------------------------------------*\
|
/*---------------------------------------------------------*\
|
||||||
| ZotacV2GPUController.cpp |
|
| ZotacV2GPUController.h |
|
||||||
| |
|
| |
|
||||||
| Definitions and types for ZOTAC GeForce |
|
| Driver for Zotac V2 GPU |
|
||||||
| RTX 30/40 series GPU lighting controller |
|
| |
|
||||||
| |
|
| Krzysztof Haładyn (krzys_h) 16 Mar 2023 |
|
||||||
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
|
| |
|
||||||
\*-----------------------------------------*/
|
| This file is part of the OpenRGB project |
|
||||||
|
| SPDX-License-Identifier: GPL-2.0-only |
|
||||||
|
\*---------------------------------------------------------*/
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include "i2c_smbus.h"
|
#include "i2c_smbus.h"
|
||||||
#include "RGBController.h"
|
#include "RGBController.h"
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
ZOTAC_V2_GPU_REG_RGB = 0xA0,
|
ZOTAC_V2_GPU_REG_RGB = 0xA0,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,14 @@
|
||||||
|
/*---------------------------------------------------------*\
|
||||||
|
| ZotacV2GPUControllerDetect.cpp |
|
||||||
|
| |
|
||||||
|
| Detector for Zotac V2 GPU |
|
||||||
|
| |
|
||||||
|
| Krzysztof Haładyn (krzys_h) 16 Mar 2023 |
|
||||||
|
| |
|
||||||
|
| This file is part of the OpenRGB project |
|
||||||
|
| SPDX-License-Identifier: GPL-2.0-only |
|
||||||
|
\*---------------------------------------------------------*/
|
||||||
|
|
||||||
#include "Detector.h"
|
#include "Detector.h"
|
||||||
#include "ZotacV2GPUController.h"
|
#include "ZotacV2GPUController.h"
|
||||||
#include "RGBController.h"
|
#include "RGBController.h"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue