Update Gigabyte CPU cooler controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-19 02:08:03 -05:00
parent b0bb6e7b1b
commit 3debbc36dd
5 changed files with 55 additions and 39 deletions

View file

@ -1,15 +1,16 @@
/*-----------------------------------------*\
| ATC800Controller.cpp |
| |
| Driver for Aorus ATC800 CPU Cooler |
| |
| |
| Felipe Cavalcanti 08/13/2020 |
\*-----------------------------------------*/
#include "ATC800Controller.h"
/*---------------------------------------------------------*\
| ATC800Controller.cpp |
| |
| Driver for Aorus ATC800 cooler |
| |
| Felipe Cavalcanti 13 Aug 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <cstring>
#include "ATC800Controller.h"
ATC800Controller::ATC800Controller(hid_device* dev_handle, const char* path)
{

View file

@ -1,18 +1,19 @@
/*-----------------------------------------*\
| ATC800Controller.h |
| |
| Definitions and types for ATC800 CPU |
| Cooler |
| |
| Felipe Cavalcanti 08/13/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| ATC800Controller.h |
| |
| Driver for Aorus ATC800 cooler |
| |
| Felipe Cavalcanti 13 Aug 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController.h"
#pragma once
#include <string>
#include <hidapi/hidapi.h>
#pragma once
#include "RGBController.h"
struct aorus_atc800_mode_config
{

View file

@ -1,8 +1,17 @@
/*---------------------------------------------------------*\
| GigabyteAorusCPUCoolerControllerDetect.cpp |
| |
| Detector for Gigabyte Aorus CPU coolers |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <hidapi/hidapi.h>
#include "Detector.h"
#include "RGBController.h"
#include "ATC800Controller.h"
#include "RGBController_AorusATC800.h"
#include <hidapi/hidapi.h>
/*-----------------------------------------------------*\
| Vendor ID |
@ -31,7 +40,7 @@ void DetectGigabyteAorusCPUCoolerControllers(hid_device_info* info, const std::s
ATC800Controller* controller = new ATC800Controller(dev, info->path);
RGBController_AorusATC800* rgb_controller = new RGBController_AorusATC800(controller);
rgb_controller->name = name;
ResourceManager::get()->RegisterRGBController(rgb_controller);
}
}

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_AorusATC800.cpp |
| |
| Generic RGB Interface Aorus ATC800 CPU |
| Cooler |
| |
| Felipe Cavalcanti 08/13/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_AorusATC800.cpp |
| |
| RGBController for Aorus ATC800 cooler |
| |
| Felipe Cavalcanti 13 Aug 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_AorusATC800.h"

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\
| RGBController_AorusATC800.h |
| |
| Generic RGB Interface for Aorus ATC 800 |
| CPU Cooler |
| |
| Felipe Cavalcanti 08/13/2020 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_AorusATC800.h |
| |
| RGBController for Aorus ATC800 cooler |
| |
| Felipe Cavalcanti 13 Aug 2020 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include "RGBController.h"
#include "ATC800Controller.h"