-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexandru Lie <[email protected]>
- Loading branch information
Showing
9 changed files
with
168 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#include "regmap_api.h" | ||
|
||
using namespace scopy::regmap; | ||
|
||
Q_LOGGING_CATEGORY(CAT_REGMAP_API, "RegMap_API") | ||
|
||
RegMap_API::RegMap_API(RegmapPlugin *regMapPlugin) | ||
: ApiObject() | ||
, m_regMapPlugin(regMapPlugin) | ||
{} | ||
|
||
RegMap_API::~RegMap_API() {} | ||
|
||
void RegMap_API::write(QString addr, QString val) | ||
{ | ||
DeviceRegisterMap *devRegMap = getActiveDevRegMap(); | ||
Q_EMIT devRegMap->registerMapValues->requestWrite(addr.toUInt(nullptr, 16), val.toUInt(nullptr, 16)); | ||
} | ||
|
||
QStringList RegMap_API::getAvailableDevicesName() | ||
{ | ||
QStringList devicesName; | ||
auto devices = m_regMapPlugin->registerMapTool->deviceList; | ||
for(auto dev = devices->begin(); dev != devices->end(); dev++) { | ||
devicesName.append(dev.key()); | ||
} | ||
return devicesName; | ||
} | ||
|
||
bool RegMap_API::setDevice(QString device) | ||
{ | ||
m_regMapPlugin->registerMapTool->updateActiveRegisterMap(device); | ||
QString currentRegMap = m_regMapPlugin->registerMapTool->activeRegisterMap; | ||
if(currentRegMap == device) { | ||
return true; | ||
} | ||
qWarning(CAT_REGMAP_API) << "Device " << device << " was not set"; | ||
return false; | ||
} | ||
|
||
QStringList RegMap_API::search(QString searchParam) | ||
{ | ||
QList<uint32_t> resultIndexes; | ||
DeviceRegisterMap *devRegMap = getActiveDevRegMap(); | ||
resultIndexes = Search::searchForRegisters(devRegMap->registerMapTemplate->getRegisterList(), searchParam); | ||
|
||
QStringList resultList; | ||
for(int i = 0; i < resultIndexes.size(); i++) { | ||
RegisterModel *model = devRegMap->registerMapTemplate->getRegisterTemplate(resultIndexes[i]); | ||
resultList.append(model->getName()); | ||
} | ||
return resultList; | ||
} | ||
|
||
QStringList RegMap_API::readInterval(QString startAddr, QString stopAddr) | ||
{ | ||
DeviceRegisterMap *devRegMap = getActiveDevRegMap(); | ||
uint32_t start = startAddr.toUInt(nullptr, 16); | ||
uint32_t stop = stopAddr.toUInt(nullptr, 16); | ||
QStringList readValues; | ||
for(int i = start; i < stop; i++) { | ||
Q_EMIT devRegMap->registerMapValues->requestRead(i); | ||
} | ||
QMap<uint32_t, uint32_t> *readFinished = devRegMap->registerMapValues->getRegisterReadValues(); | ||
|
||
for(auto it = readFinished->begin(); it != readFinished->end(); it++) { | ||
readValues.append(QString::number(it.value(), 16)); | ||
} | ||
return readValues; | ||
} | ||
|
||
bool RegMap_API::enableAutoread(bool enable) | ||
{ | ||
DeviceRegisterMap *devRegMap = getActiveDevRegMap(); | ||
devRegMap->toggleAutoread(enable); | ||
if(devRegMap->getAutoread() == enable) { | ||
return true; | ||
} | ||
qWarning(CAT_REGMAP_API) << "Autoread was not changed to " << enable; | ||
return false; | ||
} | ||
|
||
bool RegMap_API::isAutoreadEnabled() | ||
{ | ||
DeviceRegisterMap *devRegMap = getActiveDevRegMap(); | ||
return devRegMap->getAutoread(); | ||
} | ||
|
||
void RegMap_API::registerDump(QString filePath) | ||
{ | ||
DeviceRegisterMap *devRegMap = getActiveDevRegMap(); | ||
Q_EMIT devRegMap->registerMapValues->registerDump(filePath); | ||
} | ||
|
||
void RegMap_API::writeFromFile(QString filePath) { DeviceRegisterMap *devRegMap = getActiveDevRegMap(); } | ||
|
||
DeviceRegisterMap *RegMap_API::getActiveDevRegMap() | ||
{ | ||
return m_regMapPlugin->registerMapTool->deviceList->value(m_regMapPlugin->registerMapTool->activeRegisterMap); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#ifndef REGMAP_API_H | ||
#define REGMAP_API_H | ||
|
||
#include "scopy-regmap_export.h" | ||
|
||
#include <regmapplugin.h> | ||
#include <deviceregistermap.hpp> | ||
#include <registermaptool.hpp> | ||
#include <register/registermodel.hpp> | ||
#include <registermapvalues.hpp> | ||
#include "search.hpp" | ||
|
||
namespace scopy::regmap { | ||
|
||
class SCOPY_REGMAP_EXPORT RegMap_API : public ApiObject | ||
{ | ||
|
||
Q_OBJECT | ||
|
||
public: | ||
explicit RegMap_API(RegmapPlugin *regMapPlugin); | ||
~RegMap_API(); | ||
|
||
Q_INVOKABLE void write(QString addr, QString val); | ||
Q_INVOKABLE QStringList getAvailableDevicesName(); | ||
Q_INVOKABLE bool setDevice(QString device); | ||
Q_INVOKABLE QStringList search(QString searchParam); | ||
Q_INVOKABLE QStringList readInterval(QString startAddr, QString stopAddr); | ||
Q_INVOKABLE bool enableAutoread(bool enable); | ||
Q_INVOKABLE bool isAutoreadEnabled(); | ||
Q_INVOKABLE void registerDump(QString filePath); | ||
Q_INVOKABLE void writeFromFile(QString filePath); | ||
Q_INVOKABLE QString readRegister(QSttring addr); | ||
|
||
private: | ||
RegmapPlugin *m_regMapPlugin; | ||
DeviceRegisterMap *getActiveDevRegMap(); | ||
}; | ||
} // namespace scopy::regmap | ||
#endif // REGMAP_API_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters