Update Instant mouse controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-25 09:10:47 -05:00
parent 1f3bcaf52a
commit 84077e9dc2
5 changed files with 59 additions and 38 deletions

View file

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

View file

@ -1,16 +1,19 @@
/*-----------------------------------------*\
| InstantMouseController.h |
| |
| Driver for Instant mouse lighting |
| controller - header file |
| |
| Guimard Morgan (morg) 1/19/2024 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| InstantMouseController.h |
| |
| Driver for Instant mouse |
| |
| Morgan Guimard (morg) 19 Jan 2024 |
| |
| 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 INSTANT_MOUSE_REPORT_ID 0x07
#define INSTANT_MOUSE_REPORT_SIZE 8

View file

@ -1,3 +1,14 @@
/*---------------------------------------------------------*\
| InstantMouseControllerDetect.cpp |
| |
| Detector for Instant mouse |
| |
| Morgan Guimard (morg) 19 Jan 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "Detector.h"
#include "InstantMouseController.h"
#include "RGBController.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
| RGBController_InstantMouse.cpp |
| |
| Generic RGB Interface for OpenRGB |
| Instant mouse RGB USB Driver |
| |
| Guimard Morgan (morg) 1/19/2024 |
\*-----------------------------------------*/
/*---------------------------------------------------------*\
| RGBController_InstantMouse.cpp |
| |
| RGBController for Instant mouse |
| |
| Morgan Guimard (morg) 19 Jan 2024 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_InstantMouse.h"

View file

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