mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-10-16 16:42:17 +00:00
add random ext app (#2273)
* copy paste from afsk * add generate thing * todo: remove uneeded code * todo: remove uneeded code * todo: asycnmsg detect indicate, check way to not use global password * removed audio * add log warn modal * small tune * remove drunk code * password var global * seed as text instead of console * remove console * should be almost done * naming fix * bitmap now moved to seperate folder, that header i deleted isn't related to firmware * get cmake format back * get cmake format back - try2 * try to revert cmake file * get cmake format back - try3 * get cmake format back - try4 * move to util * disable amp when launch * refactor name * cmake fix * try to revert cmake file * init in methods local var * user another methods to generate * change pause to flood * fix log * fine tune * clang format * fix name
This commit is contained in:
7
firmware/application/external/external.ld
vendored
7
firmware/application/external/external.ld
vendored
@@ -46,6 +46,7 @@ MEMORY
|
||||
ram_external_app_adsbtx(rwx) : org = 0xADC50000, len = 32k
|
||||
ram_external_app_morse_tx(rwx) : org = 0xADC60000, len = 32k
|
||||
ram_external_app_sstvtx(rwx) : org = 0xADC70000, len = 32k
|
||||
ram_external_app_random_password(rwx) : org = 0xADC80000, len = 32k
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
@@ -190,6 +191,10 @@ SECTIONS
|
||||
*(*ui*external_app*sstvtx*);
|
||||
} > ram_external_app_sstvtx
|
||||
|
||||
|
||||
.external_app_random_password : ALIGN(4) SUBALIGN(4)
|
||||
{
|
||||
KEEP(*(.external_app.app_random_password.application_information));
|
||||
*(*ui*external_app*random_password*);
|
||||
} > ram_external_app_random_password
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user