mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
regtools: add graphical register explorer + analyser
This tool allows one to explore any register map. Register dumps (like produced by hwstub tools) can be loaded and decoded by the tool. Finally some analysers are provided for specific soc analysis like clock tree and emi on imx233 for example. Change-Id: Iaf81bd52d15f3e44ab4fe9bc039153fcf60cf92a
This commit is contained in:
parent
902306378e
commit
c323381f0b
14 changed files with 1792 additions and 0 deletions
21
utils/regtools/qeditor/settings.h
Normal file
21
utils/regtools/qeditor/settings.h
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#ifndef _SETTINGS_H_
|
||||
#define _SETTINGS_H_
|
||||
|
||||
#include <QSettings>
|
||||
#include <QString>
|
||||
#include <QDir>
|
||||
|
||||
class Settings
|
||||
{
|
||||
public:
|
||||
Settings();
|
||||
~Settings();
|
||||
|
||||
QSettings *GetSettings();
|
||||
static QSettings *Get();
|
||||
private:
|
||||
QSettings *m_settings;
|
||||
static Settings g_settings;
|
||||
};
|
||||
|
||||
#endif /* _SETTINGS_H_ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue