mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-03-24 17:01:05 -04:00
Update Trust GXT 180 controller files to new standardized header comment
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
/*-----------------------------------------*\
|
||||
| RGBController_TrustGXT180.cpp |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| Trust GXT 180 USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 3/24/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_TrustGXT180.cpp |
|
||||
| |
|
||||
| RGBController for Trust GXT 180 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 24 Mar 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include "RGBController_TrustGXT180.h"
|
||||
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
#include <thread>
|
||||
#include "RGBController_TrustGXT180.h"
|
||||
|
||||
/**------------------------------------------------------------------*\
|
||||
@name Trust GXT 180
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
/*-----------------------------------------*\
|
||||
| RGBController_TrustGXT180.h |
|
||||
| |
|
||||
| Generic RGB Interface for OpenRGB |
|
||||
| Trust GXT 180 USB Driver |
|
||||
| |
|
||||
| Guimard Morgan (morg) 3/24/2022 |
|
||||
\*-----------------------------------------*/
|
||||
/*---------------------------------------------------------*\
|
||||
| RGBController_TrustGXT180.h |
|
||||
| |
|
||||
| RGBController for Trust GXT 180 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 24 Mar 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
|
||||
@@ -1,12 +1,16 @@
|
||||
/*-----------------------------------------*\
|
||||
| TrustGXT180Controller.cpp |
|
||||
| |
|
||||
| Driver for Trust GXT 180 controller |
|
||||
| |
|
||||
| Guimard Morgan (morg) 3/24/2022 |
|
||||
\*-----------------------------------------*/
|
||||
#include "TrustGXT180Controller.h"
|
||||
/*---------------------------------------------------------*\
|
||||
| TrustGXT180Controller.cpp |
|
||||
| |
|
||||
| Driver for Trust GXT 180 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 24 Mar 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#include <string.h>
|
||||
#include "TrustGXT180Controller.h"
|
||||
|
||||
TrustGXT180Controller::TrustGXT180Controller(hid_device* dev_handle, const hid_device_info& info)
|
||||
{
|
||||
|
||||
@@ -1,18 +1,20 @@
|
||||
/*-----------------------------------------*\
|
||||
| TrustGXT180Controller.h |
|
||||
| |
|
||||
| Driver for Trust GXT 180 |
|
||||
| controller - header file |
|
||||
| |
|
||||
| Guimard Morgan (morg) 3/24/2022 |
|
||||
\*-----------------------------------------*/
|
||||
|
||||
#include "RGBController.h"
|
||||
#include <string>
|
||||
#include <hidapi/hidapi.h>
|
||||
/*---------------------------------------------------------*\
|
||||
| TrustGXT180Controller.h |
|
||||
| |
|
||||
| Driver for Trust GXT 180 |
|
||||
| |
|
||||
| Morgan Guimard (morg) 24 Mar 2022 |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-only |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <hidapi/hidapi.h>
|
||||
#include "RGBController.h"
|
||||
|
||||
#define TRUST_GXT_180_REPORT_SIZE 64
|
||||
#define TRUST_GXT_180_NUMBER_OF_LEDS 1
|
||||
#define TRUST_GXT_180_REPORT_ID 0x03
|
||||
|
||||
Reference in New Issue
Block a user