Update Zotac V2 GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-30 19:09:28 -05:00
parent 494769177f
commit 7eaae7cf7d
5 changed files with 54 additions and 35 deletions

View file

@ -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 =
{ {

View file

@ -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

View file

@ -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"

View file

@ -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,

View file

@ -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"