Update Zotac Turing GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-06-30 19:06:29 -05:00
parent 0289f0b2d4
commit 494769177f
5 changed files with 54 additions and 35 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_ZotacTuringGPU.cpp |
| |
| Generic RGB Interface for OpenRGB |
| ZOTAC Turing GPU Driver |
| |
| David Henry 1/07/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ZotacTuringGPU.cpp |
| |
| RGBController for Zotac Turing GPU |
| |
| David Henry 07 Jan 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_ZotacTuringGPU.h"
@ -122,7 +124,7 @@ void RGBController_ZotacTuringGPU::SetupInitialValues()
controller->GetMode(colors[0], active_mode, speed);
modes[active_mode].speed = speed;
SignalUpdate();
}

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_ZotacTuringGPU.h |
| |
| Generic RGB Interface for OpenRGB |
| ZOTAC Turing GPU Driver |
| |
| David Henry 1/07/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_ZotacTuringGPU.h |
| |
| RGBController for Zotac Turing GPU |
| |
| David Henry 07 Jan 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| ZotacTuringGPUController.cpp |
| |
| Driver for ZOTAC GeForce RTX 20 series |
| GPU lighting controller |
| |
| David Henry 1/07/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| ZotacTuringGPUController.cpp |
| |
| Driver for Zotac Turing GPU |
| |
| David Henry 07 Jan 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "ZotacTuringGPUController.h"

View file

@ -1,18 +1,20 @@
/*-----------------------------------------*\
| ZotacTuringGPUController.cpp |
| |
| Definitions and types for ZOTAC GeForce |
| RTX 20 series GPU lighting controller |
| |
| David Henry 1/07/2023 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| ZotacTuringGPUController.h |
| |
| Driver for Zotac Turing GPU |
| |
| David Henry 07 Jan 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_TURING_GPU_REG_COLOR_AND_MODE = 0xA0,

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| ZotacTuringGPUControllerDetect.cpp |
| |
| Detector for Zotac Turing GPU |
| |
| David Henry 07 Jan 2023 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "ZotacTuringGPUController.h"
#include "RGBController.h"