Update MSI Vigor controller files to new standardized header comment
This commit is contained in:
parent
67f7c40fa5
commit
75f895799c
5 changed files with 58 additions and 38 deletions
|
|
@ -1,3 +1,14 @@
|
|||
/*---------------------------------------------------------*\
|
||||
| MSIVigorControllerDetect.cpp |
|
||||
| |
|
||||
| Detector for MSI Vigor |
|
||||
| |
|
||||
| Morgan Guimard (morg) 01 Jun 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "Detector.h"
|
||||
#include "MSIVigorGK30Controller.h"
|
||||
#include "RGBController.h"
|
||||
|
|
|
|||
|
|
@ -1,14 +1,17 @@
|
|||
/*-----------------------------------------*\
|
||||
| MSIVigorGK30Controller.cpp |
|
||||
| |
|
||||
| Driver for MSI Vigor GK 30 keyboard |
|
||||
| controller |
|
||||
| |
|
||||
| Guimard Morgan (morg) 6/01/2022 |
|
||||
\*-----------------------------------------*/
|
||||
#include "MSIVigorGK30Controller.h"
|
||||
#include <string.h>
|
||||
/*---------------------------------------------------------*\
|
||||
| MSIVigorGK30Controller.cpp |
|
||||
| |
|
||||
| Driver for MSI Vigor GK30 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 01 Jun 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <cmath>
|
||||
#include <string.h>
|
||||
#include "MSIVigorGK30Controller.h"
|
||||
|
||||
static unsigned char argb_colour_index_data[2][2][2] =
|
||||
{ //B0 B1
|
||||
|
|
|
|||
|
|
@ -1,16 +1,19 @@
|
|||
/*-----------------------------------------*\
|
||||
| MSIVigorGK30Controller.h |
|
||||
| |
|
||||
| Driver for MSI Vigor GK 30 keyboard |
|
||||
| controller - header file |
|
||||
| |
|
||||
| Guimard Morgan (morg) 6/01/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| MSIVigorGK30Controller.h |
|
||||
| |
|
||||
| Driver for MSI Vigor GK30 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 01 Jun 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "RGBController.h"
|
||||
#include <string>
|
||||
#include <hidapi/hidapi.h>
|
||||
#include "RGBController.h"
|
||||
|
||||
#define MSI_VIGOR_GK30_REPORT_SIZE 8
|
||||
#define MSI_VIGOR_GK30_LEDS_COUNT 6
|
||||
|
|
|
|||
|
|
@ -1,16 +1,17 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_MSIVigorGK30.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| MSI Vigor GK30 USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 6/01/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_MSIVigorGK30.cpp |
|
||||
| |
|
||||
| RGBController for MSI Vigor GK30 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 01 Jun 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_MSIVigorGK30.h"
|
||||
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
#include <thread>
|
||||
#include "RGBController_MSIVigorGK30.h"
|
||||
|
||||
/**------------------------------------------------------------------*\
|
||||
@name MSI Vigor GK30
|
||||
|
|
|
|||
|
|
@ -1,11 +1,13 @@
|
|||
/*-----------------------------------------*\
|
||||
| RGBController_MSIVigorGK30.h |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| MIS Vigor GK30 RGB USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 6/01/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_MSIVigorGK30.h |
|
||||
| |
|
||||
| RGBController for MSI Vigor GK30 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 01 Jun 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue