mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-31 20:09:04 +00:00
Move POCSAG Tx to Ext. (#3033)
* Disable POCSAG TX in menu Comment out POCSAG TX related code in ui_navigation.cpp * Comment out ui_pocsag_tx.cpp in CMakeLists Comment out the ui_pocsag_tx.cpp file in CMakeLists. * Move POCSAG Tx to Ext. * Update external.cmake * Delete firmware/application/apps/ui_pocsag_tx.hpp * Delete firmware/application/apps/ui_pocsag_tx.cpp * Update main.cpp * Update main.cpp * Update external.ld * fix namespace * deleted commented out entry * delete commented entries * fix: correct baseband for pocsag tx * run prepared --------- Co-authored-by: gullradriel <gullradriel@users.noreply.github.com>
This commit is contained in:
+7
@@ -98,6 +98,7 @@ MEMORY
|
||||
ram_external_app_rtty_rx (rwx) : org = 0xADF90000, len = 32k
|
||||
ram_external_app_rtty_tx (rwx) : org = 0xADFA0000, len = 32k
|
||||
ram_external_app_tpmstx (rwx) : org = 0xADFB0000, len = 32k
|
||||
ram_external_app_pocsag_tx (rwx) : org = 0xADFC0000, len = 32k
|
||||
}
|
||||
|
||||
SECTIONS
|
||||
@@ -552,5 +553,11 @@ SECTIONS
|
||||
KEEP(*(.external_app.app_rtty_tx.application_information));
|
||||
*(*ui*external_app*rtty_tx*);
|
||||
} > ram_external_app_rtty_tx
|
||||
|
||||
.external_app_pocsag_tx : ALIGN(4) SUBALIGN(4)
|
||||
{
|
||||
KEEP(*(.external_app.app_pocsag_tx.application_information));
|
||||
*(*ui*external_app*pocsag_tx*);
|
||||
} > ram_external_app_pocsag_tx
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user