diff options
| author | Amaury Pouly <amaury.pouly@gmail.com> | 2016-02-07 21:48:40 +0000 |
|---|---|---|
| committer | Amaury Pouly <amaury.pouly@gmail.com> | 2016-04-08 18:46:46 +0100 |
| commit | 5ac0166388ac9a493491a30fbc3570f23950dc51 (patch) | |
| tree | 8fe2019a8d3376042d1f92b7a2127bd73d3c97e3 /utils/imxtools/misc | |
| parent | cc4c9b70bcac048fc388d0f553b7621f52449526 (diff) | |
| download | rockbox-5ac0166388ac9a493491a30fbc3570f23950dc51.zip rockbox-5ac0166388ac9a493491a30fbc3570f23950dc51.tar.gz rockbox-5ac0166388ac9a493491a30fbc3570f23950dc51.tar.bz2 rockbox-5ac0166388ac9a493491a30fbc3570f23950dc51.tar.xz | |
qeditor: port to the new hwstub library and add features
This commit adds support for the version of the hwstub library, which requires
a lot of changes. It also adds some editing features, such as register access
and much better editing of fields using the mouse (double click on a field
to be able to resize and move it).
Change-Id: I3c4e4cc855cb44911c72bc8127bad841b68efe52
Diffstat (limited to 'utils/imxtools/misc')
| -rw-r--r-- | utils/imxtools/misc/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/imxtools/misc/map.h b/utils/imxtools/misc/map.h index b94875f..6143f91 100644 --- a/utils/imxtools/misc/map.h +++ b/utils/imxtools/misc/map.h @@ -79,7 +79,7 @@ struct soc_t #define PIN_GROUP_PREFIX_NONE "" #define R(group,name,block) {PIN_GROUP_PREFIX_##group name, PIN_GROUP_##group, block} -#define Q(group,block,name) R(group,STR(block)"_"name, block) +#define Q(group,block,name) R(group,STR(block) "_" name, block) #define P(group,name) R(group,name,PIN_NO_BLOCK) #define IO P(GPIO,"gpio") |