Update Gigabyte Aorus Super IO motherboard controller files to new standardized header comment
This commit is contained in:
parent
75d77ea608
commit
de7d0a4c76
5 changed files with 58 additions and 39 deletions
|
|
@ -1,8 +1,13 @@
|
|||
/*------------------------------------------*\
|
||||
| GigabyteSuperIORGBController.cpp |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 2/11/2020 |
|
||||
\*------------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| GigabyteSuperIORGBController.cpp |
|
||||
| |
|
||||
| Driver for Gigabyte Aorus Super IO motherboard |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "GigabyteSuperIORGBController.h"
|
||||
#include "super_io.h"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,17 @@
|
|||
/*-----------------------------------------------*\
|
||||
| GigabyteSuperIORGBController.h |
|
||||
| |
|
||||
| Definitions and types for Gigabyte SuperIO RGB |
|
||||
| lighting controller |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 9/11/2022 |
|
||||
\*-----------------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| GigabyteSuperIORGBController.h |
|
||||
| |
|
||||
| Driver for Gigabyte Aorus Super IO motherboard |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#pragma once
|
||||
|
||||
enum
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,20 +1,24 @@
|
|||
/*-----------------------------------------------*\
|
||||
| RGBController_GigabyteSuperIORGB.cpp |
|
||||
| |
|
||||
| Detect Gigabyte RGB compatible Super-IO chips |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk ) 9/11/2022 |
|
||||
\*-----------------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| GigabyteSuperIORGBControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for Gigabyte Aorus Super IO motherboard |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <vector>
|
||||
#include "Detector.h"
|
||||
#include "GigabyteSuperIORGBController.h"
|
||||
#include "RGBController.h"
|
||||
#include "RGBController_GigabyteSuperIORGB.h"
|
||||
#include "super_io.h"
|
||||
#include "dmiinfo.h"
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define NUM_COMPATIBLE_DEVICES (sizeof(compatible_devices) / sizeof(compatible_devices[0]))
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,13 @@
|
|||
/*-------------------------------------------*\
|
||||
| RGBController_GigabyteSuperIORGB.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for Gigabyte RGB |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk ) 9/11/2022 |
|
||||
\*-------------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_GigabyteSuperIORGB.cpp |
|
||||
| |
|
||||
| RGBController for Gigabyte Aorus Super IO motherboard |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_GigabyteSuperIORGB.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,16 @@
|
|||
/*------------------------------------------*\
|
||||
| RGBController_GigabyteSuperIORGB.h |
|
||||
| |
|
||||
| Generic RGB Interface for Gigabyte RGB |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 9/11/2022 |
|
||||
\*------------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_GigabyteSuperIORGB.h |
|
||||
| |
|
||||
| RGBController for Gigabyte Aorus Super IO motherboard |
|
||||
| |
|
||||
| Ryan Frankcombe (422gRdHuX5uk) 11 Sep 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include "GigabyteSuperIORGBController.h"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue