Update Lexip mouse controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 12:53:50 -05:00
parent e8264ae616
commit cb41353622
5 changed files with 57 additions and 37 deletions

View file

@ -1,13 +1,16 @@
/*-----------------------------------------*\
| LexipMouseController.cpp |
| |
| Driver for Lexip mouse lighting |
| controller |
| |
| Guimard Morgan (morg) 2/21/2022 |
\*-----------------------------------------*/
#include "LexipMouseController.h"
/*---------------------------------------------------------*\
| LexipMouseController.cpp |
| |
| Driver for Lexip mouse |
| |
| Morgan Guimard (morg) 21 Feb 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <string.h>
#include "LexipMouseController.h"
LexipMouseController::LexipMouseController(hid_device* dev_handle, const hid_device_info& info)
{

View file

@ -1,16 +1,19 @@
/*-----------------------------------------*\
| LexipMouseController.h |
| |
| Driver for Lexip mouse lighting |
| controller - header file |
| |
| Guimard Morgan (morg) 2/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| LexipMouseController.h |
| |
| Driver for Lexip mouse |
| |
| Morgan Guimard (morg) 21 Feb 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 PACKET_DATA_LENGTH 64

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| LexipMouseControllerDetect.cpp |
| |
| Detector for Lexip mouse |
| |
| Morgan Guimard (morg) 21 Feb 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "LexipMouseController.h"
#include "RGBController.h"

View file

@ -1,16 +1,17 @@
/*-----------------------------------------*\
| RGBController_LexipMouse.cpp |
| |
| Generic RGB Interface for OpenRGB |
| Lexip mouse USB Driver |
| |
| Guimard Morgan (morg) 2/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LexipMouse.cpp |
| |
| RGBController for Lexip mouse |
| |
| Morgan Guimard (morg) 21 Feb 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_LexipMouse.h"
#include <thread>
#include <chrono>
#include <thread>
#include "RGBController_LexipMouse.h"
/**------------------------------------------------------------------*\
@name Lexip Mouse

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_LexipMouse.h |
| |
| Generic RGB Interface for OpenRGB |
| Lexip mouse RGB USB Driver |
| |
| Guimard Morgan (morg) 2/21/2022 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_LexipMouse.h |
| |
| RGBController for Lexip mouse |
| |
| Morgan Guimard (morg) 21 Feb 2022 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once