Publish LumaOps source
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
/*---------------------------------------------------------*\
|
||||
| SPDWrapper.h |
|
||||
| |
|
||||
| Wrapper for DRAM modules using SPD information |
|
||||
| |
|
||||
| This file is part of the OpenRGB project |
|
||||
| SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
\*---------------------------------------------------------*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "SPDAccessor.h"
|
||||
#include "SPDCommon.h"
|
||||
#include "SPDDetector.h"
|
||||
|
||||
class SPDWrapper
|
||||
{
|
||||
public:
|
||||
SPDWrapper(const SPDWrapper &wrapper);
|
||||
SPDWrapper(const SPDDetector &detector);
|
||||
~SPDWrapper();
|
||||
|
||||
uint8_t address();
|
||||
SPDMemoryType memory_type();
|
||||
int index();
|
||||
uint16_t jedec_id();
|
||||
std::string part_number();
|
||||
uint8_t manufacturer_data(uint16_t index);
|
||||
|
||||
private:
|
||||
SPDAccessor *accessor = nullptr;
|
||||
uint8_t addr;
|
||||
uint16_t jedec_id_val;
|
||||
SPDMemoryType mem_type;
|
||||
};
|
||||
|
||||
/*-------------------------------------------------------------------------*\
|
||||
| Helper functions for easier collection handling. |
|
||||
\*-------------------------------------------------------------------------*/
|
||||
|
||||
bool is_jedec_in_slots(std::vector<SPDWrapper> &slots, uint16_t jedec_id);
|
||||
std::vector<SPDWrapper*> slots_with_jedec(std::vector<SPDWrapper> &slots, uint16_t jedec_id);
|
||||
Reference in New Issue
Block a user