Update HyperX DRAM controller files to new standardized header comment

This commit is contained in:
Adam Honse 2024-05-19 19:33:14 -05:00
parent acff88590c
commit af830e5b21
5 changed files with 60 additions and 41 deletions

View file

@ -1,14 +1,16 @@
/*-----------------------------------------*\
/*---------------------------------------------------------*\
| HyperXDRAMController.cpp |
| |
| Definitions and types for HyperX Predator|
| and Fury RGB RAM lighting controller |
| Driver for HyperX/Kingston Fury RAM |
| |
| Adam Honse (CalcProgrammer1) 6/29/2019 |
\*-----------------------------------------*/
| Adam Honse (CalcProgrammer1) 19 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "HyperXDRAMController.h"
#include <cstring>
#include "HyperXDRAMController.h"
HyperXDRAMController::HyperXDRAMController(i2c_smbus_interface* bus, hyperx_dev_id dev, unsigned char slots)
{

View file

@ -1,17 +1,19 @@
/*-----------------------------------------*\
/*---------------------------------------------------------*\
| HyperXDRAMController.h |
| |
| Definitions and types for HyperX Predator|
| and Fury RGB RAM lighting controller |
| Driver for HyperX/Kingston Fury RAM |
| |
| Adam Honse (CalcProgrammer1) 6/29/2019 |
\*-----------------------------------------*/
| Adam Honse (CalcProgrammer1) 19 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once
#include <string>
#include "i2c_smbus.h"
#pragma once
typedef unsigned char hyperx_dev_id;
typedef unsigned short hyperx_register;

View file

@ -1,3 +1,17 @@
/*---------------------------------------------------------*\
| HyperXDRAMControllerDetect.cpp |
| |
| Driver for HyperX/Kingston Fury RAM |
| |
| Adam Honse (CalcProgrammer1) 19 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include "Detector.h"
#include "HyperXDRAMController.h"
#include "LogManager.h"
@ -5,9 +19,6 @@
#include "RGBController_HyperXDRAM.h"
#include "i2c_smbus.h"
#include "pci_ids.h"
#include <vector>
#include <stdio.h>
#include <stdlib.h>
using namespace std::chrono_literals;

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
/*---------------------------------------------------------*\
| RGBController_HyperXDRAM.cpp |
| |
| Generic RGB Interface for OpenAuraSDK |
| HyperX Predator and Fury RGB interface |
| RGBController for HyperX/Kingston Fury RAM |
| |
| Adam Honse (CalcProgrammer1) 6/29/2019 |
\*-----------------------------------------*/
| Adam Honse (CalcProgrammer1) 29 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#include "RGBController_HyperXDRAM.h"

View file

@ -1,11 +1,13 @@
/*-----------------------------------------*\
/*---------------------------------------------------------*\
| RGBController_HyperXDRAM.h |
| |
| Generic RGB Interface for OpenAuraSDK |
| HyperX Predator and Fury RGB interface |
| RGBController for HyperX/Kingston Fury RAM |
| |
| Adam Honse (CalcProgrammer1) 6/29/2019 |
\*-----------------------------------------*/
| Adam Honse (CalcProgrammer1) 29 Jun 2019 |
| |
| This file is part of the OpenRGB project |
| SPDX-License-Identifier: GPL-2.0-only |
\*---------------------------------------------------------*/
#pragma once