Update Gigabyte Aorus RGB Fusion GPU controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-19 18:11:00 -05:00
parent d19df6d931
commit 75d77ea608
5 changed files with 58 additions and 39 deletions

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| GigabyteRGBFusionGPUController.cpp |
| |
| Driver for Gigabyte Aorus RGB Fusion GPU |
| lighting controller |
| |
| Adam Honse (CalcProgrammer1) 2/20/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteRGBFusionGPUController.cpp |
| |
| Driver for Gigabyte Aorus RGB Fusion GPU |
| |
| Adam Honse (CalcProgrammer1) 20 Feb 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "GigabyteRGBFusionGPUController.h"
@ -79,4 +81,4 @@ void RGBFusionGPUController::Save()
bus->i2c_smbus_write_byte(dev, 0x00);
bus->i2c_smbus_write_byte(dev, 0x00);
}
}
}

View file

@ -1,17 +1,19 @@
/*-----------------------------------------*\
| GigabyteRGBFusionGPUController.h |
| |
| Definitions and types for Gigabyte Aorus |
| RGB Fusion GPU lighting controller |
| |
| Adam Honse (CalcProgrammer1) 2/20/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| GigabyteRGBFusionGPUController.h |
| |
| Driver for Gigabyte Aorus RGB Fusion GPU |
| |
| Adam Honse (CalcProgrammer1) 20 Feb 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "i2c_smbus.h"
#pragma once
typedef unsigned char rgb_fusion_dev_id;
enum

View file

@ -1,3 +1,17 @@
/*---------------------------------------------------------*\
| GigabyteRGBFusionGPUControllerDetect.cpp |
| |
| Detector for Gigabyte Aorus RGB Fusion GPU |
| |
| Adam Honse (CalcProgrammer1) 20 Feb 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "Detector.h"
#include "GigabyteRGBFusionGPUController.h"
#include "LogManager.h"
@ -5,9 +19,6 @@
#include "RGBController_GigabyteRGBFusionGPU.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#define GIGABYTEGPU_CONTROLLER_NAME "Gigabyte RGB Fusion GPU"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_GigabyteRGBFusionGPU.cpp |
| |
| Generic RGB Interface for OpenRGB |
| Gigabyte RGB Fusion GPU Driver |
| |
| Adam Honse (CalcProgrammer1) 2/23/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteRGBFusionGPU.cpp |
| |
| RGBController for Gigabyte Aorus RGB Fusion GPU |
| |
| Adam Honse (CalcProgrammer1) 23 Feb 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_GigabyteRGBFusionGPU.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_GigabyteRGBFusionGPU.h |
| |
| Generic RGB Interface for OpenRGB |
| Gigabyte RGB Fusion GPU Driver |
| |
| Adam Honse (CalcProgrammer1) 2/23/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_GigabyteRGBFusionGPU.h |
| |
| RGBController for Gigabyte Aorus RGB Fusion GPU |
| |
| Adam Honse (CalcProgrammer1) 23 Feb 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
@ -28,7 +30,7 @@ public:
void DeviceUpdateMode();
void DeviceSaveMode();
private:
RGBFusionGPUController* controller;
};