mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-12-14 18:24:34 -05:00
100bea644c
This pull requests adds a new type of external app to the firmware: The standalone app. Pros: Will work after an upgrade. Size of image is only limited by shared heap size of M0 (application) (64kb total). Cons: No full access to all functions in the main firmware. One well defined (and versioned) API handles all communication. The Pacman app was converted to be the first the the new kind.
164 lines
6.0 KiB
Plaintext
164 lines
6.0 KiB
Plaintext
/*
|
|
Copyright (C) 2023 Bernd Herzog
|
|
Copyright (C) 2024 Mark Thompson
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
MEMORY
|
|
{
|
|
/*
|
|
* External apps: regions can't overlap so addresses are corrected after build.
|
|
* Picking uncommon address values for search & replace in binaries (no false positives) - 0xADB00000-0xADEF0000 seems to be good.
|
|
* Also need to consider processor memory map - reading 0xADxxxxxx generates a fault which may be better than unexpected behavior.
|
|
* External app address ranges below must match those in python file "external_app_info.py".
|
|
*/
|
|
ram_external_app_afsk_rx (rwx) : org = 0xADB10000, len = 32k
|
|
ram_external_app_calculator (rwx) : org = 0xADB20000, len = 32k
|
|
ram_external_app_font_viewer(rwx) : org = 0xADB30000, len = 32k
|
|
ram_external_app_blespam(rwx) : org = 0xADB40000, len = 32k
|
|
ram_external_app_analogtv(rwx) : org = 0xADB50000, len = 32k
|
|
ram_external_app_nrf_rx(rwx) : org = 0xADB60000, len = 32k
|
|
ram_external_app_coasterp(rwx) : org = 0xADB70000, len = 32k
|
|
ram_external_app_lge(rwx) : org = 0xADB80000, len = 32k
|
|
ram_external_app_lcr(rwx) : org = 0xADB90000, len = 32k
|
|
ram_external_app_jammer(rwx) : org = 0xADBA0000, len = 32k
|
|
ram_external_app_gpssim(rwx) : org = 0xADBB0000, len = 32k
|
|
ram_external_app_spainter(rwx) : org = 0xADBC0000, len = 32k
|
|
ram_external_app_keyfob(rwx) : org = 0xADBD0000, len = 32k
|
|
ram_external_app_tetris(rwx) : org = 0xADBE0000, len = 32k
|
|
ram_external_app_extsensors(rwx) : org = 0xADBF0000, len = 32k
|
|
ram_external_app_foxhunt_rx(rwx) : org = 0xADC00000, len = 32k
|
|
ram_external_app_audio_test(rwx) : org = 0xADC10000, len = 32k
|
|
ram_external_app_wardrivemap(rwx) : org = 0xADC20000, len = 32k
|
|
ram_external_app_tpmsrx(rwx) : org = 0xADC30000, len = 32k
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.external_app_afsk_rx : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_afsk_rx.application_information));
|
|
*(*ui*external_app*afsk_rx*);
|
|
} > ram_external_app_afsk_rx
|
|
|
|
.external_app_calculator : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_calculator.application_information));
|
|
*(*ui*external_app*calculator*);
|
|
} > ram_external_app_calculator
|
|
|
|
.external_app_font_viewer : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_font_viewer.application_information));
|
|
*(*ui*external_app*font_viewer*);
|
|
} > ram_external_app_font_viewer
|
|
|
|
.external_app_blespam : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_blespam.application_information));
|
|
*(*ui*external_app*blespam*);
|
|
} > ram_external_app_blespam
|
|
|
|
.external_app_analogtv : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_analogtv.application_information));
|
|
*(*ui*external_app*analogtv*);
|
|
} > ram_external_app_analogtv
|
|
|
|
.external_app_nrf_rx : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_nrf_rx.application_information));
|
|
*(*ui*external_app*nrf_rx*);
|
|
} > ram_external_app_nrf_rx
|
|
|
|
.external_app_coasterp : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_coasterp.application_information));
|
|
*(*ui*external_app*coasterp*);
|
|
} > ram_external_app_coasterp
|
|
|
|
.external_app_lge : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_lge.application_information));
|
|
*(*ui*external_app*lge*);
|
|
} > ram_external_app_lge
|
|
|
|
.external_app_lcr : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_lcr.application_information));
|
|
*(*ui*external_app*lcr*);
|
|
} > ram_external_app_lcr
|
|
|
|
.external_app_jammer : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_jammer.application_information));
|
|
*(*ui*external_app*jammer*);
|
|
} > ram_external_app_jammer
|
|
|
|
.external_app_gpssim : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_gpssim.application_information));
|
|
*(*ui*external_app*gpssim*);
|
|
} > ram_external_app_gpssim
|
|
|
|
.external_app_spainter : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_spainter.application_information));
|
|
*(*ui*external_app*spainter*);
|
|
} > ram_external_app_spainter
|
|
|
|
.external_app_keyfob : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_keyfob.application_information));
|
|
*(*ui*external_app*keyfob*);
|
|
} > ram_external_app_keyfob
|
|
|
|
.external_app_tetris : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_tetris.application_information));
|
|
*(*ui*external_app*tetris*);
|
|
} > ram_external_app_tetris
|
|
|
|
.external_app_extsensors : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_extsensors.application_information));
|
|
*(*ui*external_app*extsensors*);
|
|
} > ram_external_app_extsensors
|
|
|
|
.external_app_foxhunt_rx : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_foxhunt_rx.application_information));
|
|
*(*ui*external_app*foxhunt_rx*);
|
|
} > ram_external_app_foxhunt_rx
|
|
|
|
.external_app_audio_test : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_audio_test.application_information));
|
|
*(*ui*external_app*audio_test*);
|
|
} > ram_external_app_audio_test
|
|
|
|
.external_app_wardrivemap : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_wardrivemap.application_information));
|
|
*(*ui*external_app*wardrivemap*);
|
|
} > ram_external_app_wardrivemap
|
|
|
|
.external_app_tpmsrx : ALIGN(4) SUBALIGN(4)
|
|
{
|
|
KEEP(*(.external_app.app_tpmsrx.application_information));
|
|
*(*ui*external_app*tpmsrx*);
|
|
} > ram_external_app_tpmsrx
|
|
|
|
}
|