mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-09-10 00:29:33 +00:00
GFX EQ App (#2607)
* Make the beginnings of rf3d * Name change... * Add mood button * Remove forced amp settings and add persistent user settings * Fix options bar layout and SettingsManager * Make the background paint to black again after opening fq modal * fix audio/mod/settings and cleaned unneeded parts * Mapped bars to audio spectrum * Improved frequency response... still needs work i think * add on_freqchg to be able to answer to serial frequency change command * Made calculations for 14 bars to fit screen and little adjustments * Visual improvements Co-authored-by: gullradriel
This commit is contained in:
+7
@@ -72,6 +72,7 @@ MEMORY
|
||||
ram_external_app_debug_pmem (rwx) : org = 0xADDF0000, len = 32k
|
||||
ram_external_app_scanner (rwx) : org = 0xADE00000, len = 32k
|
||||
ram_external_app_level (rwx) : org = 0xADE10000, len = 32k
|
||||
ram_external_app_gfxeq (rwx) : org = 0xADE20000, len = 32k
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
@@ -368,4 +369,10 @@ SECTIONS
|
||||
KEEP(*(.external_app.app_level.application_information));
|
||||
*(*ui*external_app*level*);
|
||||
} > ram_external_app_level
|
||||
|
||||
.external_app_gfxeq : ALIGN(4) SUBALIGN(4)
|
||||
{
|
||||
KEEP(*(.external_app.app_gfxeq.application_information));
|
||||
*(*ui*external_app*gfxeq*);
|
||||
} > ram_external_app_gfxeq
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user