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 |
| |
| Generic RGB Interface for OpenRGB |
| ZOTAC RTX 30/40 series GPU Driver |
| |
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ZotacV2GPU.cpp |
| |
| RGBController 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 <map>
#include "RGBController_ZotacV2GPU.h"
#include "LogManager.h"
#include <map>
std::map<std::string, ZotacV2GPUConfig> ZOTAC_V2_GPU_CONFIG =
{

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_ZotacV2GPU.h |
| |
| Generic RGB Interface for OpenRGB |
| ZOTAC RTX 30/40 series GPU Driver |
| |
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ZotacV2GPU.h |
| |
| RGBController 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 |
\*---------------------------------------------------------*/
#pragma once

View file

@ -1,11 +1,13 @@
/*------------------------------------------*\
| ZotacV2GPUController.cpp |
| |
| Driver for ZOTAC GeForce RTX 30/40 series |
| GPU lighting controller |
| |
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
\*------------------------------------------*/
/*---------------------------------------------------------*\
| ZotacV2GPUController.cpp |
| |
| Driver 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 "ZotacV2GPUController.h"
#include "LogManager.h"

View file

@ -1,18 +1,20 @@
/*-----------------------------------------*\
| ZotacV2GPUController.cpp |
| |
| Definitions and types for ZOTAC GeForce |
| RTX 30/40 series GPU lighting controller |
| |
| Krzysztof Haładyn (krzys_h) 3/16/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| ZotacV2GPUController.h |
| |
| Driver 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 |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "i2c_smbus.h"
#include "RGBController.h"
#pragma once
enum
{
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 "ZotacV2GPUController.h"
#include "RGBController.h"