diff --git a/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.cpp b/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.cpp index 778813d2..bb51bc43 100644 --- a/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.cpp +++ b/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.cpp @@ -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 #include "RGBController_ZotacV2GPU.h" #include "LogManager.h" -#include std::map ZOTAC_V2_GPU_CONFIG = { diff --git a/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.h b/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.h index 31d3304a..567241b4 100644 --- a/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.h +++ b/Controllers/ZotacV2GPUController/RGBController_ZotacV2GPU.h @@ -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 diff --git a/Controllers/ZotacV2GPUController/ZotacV2GPUController.cpp b/Controllers/ZotacV2GPUController/ZotacV2GPUController.cpp index b8a83fc7..50ede022 100644 --- a/Controllers/ZotacV2GPUController/ZotacV2GPUController.cpp +++ b/Controllers/ZotacV2GPUController/ZotacV2GPUController.cpp @@ -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" diff --git a/Controllers/ZotacV2GPUController/ZotacV2GPUController.h b/Controllers/ZotacV2GPUController/ZotacV2GPUController.h index bdd0cb07..43880259 100644 --- a/Controllers/ZotacV2GPUController/ZotacV2GPUController.h +++ b/Controllers/ZotacV2GPUController/ZotacV2GPUController.h @@ -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 #include "i2c_smbus.h" #include "RGBController.h" -#pragma once - enum { ZOTAC_V2_GPU_REG_RGB = 0xA0, diff --git a/Controllers/ZotacV2GPUController/ZotacV2GPUControllerDetect.cpp b/Controllers/ZotacV2GPUController/ZotacV2GPUControllerDetect.cpp index 465f65dc..cfc9f0d7 100644 --- a/Controllers/ZotacV2GPUController/ZotacV2GPUControllerDetect.cpp +++ b/Controllers/ZotacV2GPUController/ZotacV2GPUControllerDetect.cpp @@ -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"