mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-11 08:00:31 -04:00
remove not yet enabled screening app (#2594)
This commit is contained in:
parent
22d6e34cd6
commit
8a7aa9c0f8
4 changed files with 3 additions and 20 deletions
4
firmware/application/external/external.cmake
vendored
4
firmware/application/external/external.cmake
vendored
|
@ -196,9 +196,6 @@ set(EXTCPPSRC
|
||||||
external/debug_pmem/main.cpp
|
external/debug_pmem/main.cpp
|
||||||
external/debug_pmem/ui_debug_pmem.cpp
|
external/debug_pmem/ui_debug_pmem.cpp
|
||||||
|
|
||||||
#screening
|
|
||||||
# external/screening/main.cpp
|
|
||||||
# external/screening/ui_screening.cpp
|
|
||||||
)
|
)
|
||||||
|
|
||||||
set(EXTAPPLIST
|
set(EXTAPPLIST
|
||||||
|
@ -249,5 +246,4 @@ set(EXTAPPLIST
|
||||||
breakout
|
breakout
|
||||||
doom
|
doom
|
||||||
debug_pmem
|
debug_pmem
|
||||||
# screening
|
|
||||||
)
|
)
|
||||||
|
|
13
firmware/application/external/external.ld
vendored
13
firmware/application/external/external.ld
vendored
|
@ -70,8 +70,6 @@ MEMORY
|
||||||
ram_external_app_breakout (rwx) : org = 0xADDD0000, len = 32k
|
ram_external_app_breakout (rwx) : org = 0xADDD0000, len = 32k
|
||||||
ram_external_app_doom (rwx) : org = 0xADDE0000, len = 32k
|
ram_external_app_doom (rwx) : org = 0xADDE0000, len = 32k
|
||||||
ram_external_app_debug_pmem (rwx) : org = 0xADDF0000, len = 32k
|
ram_external_app_debug_pmem (rwx) : org = 0xADDF0000, len = 32k
|
||||||
/*ram_external_app_screening (rwx) : org = 0xADEA0000, len = 32k*/
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
|
@ -356,15 +354,4 @@ SECTIONS
|
||||||
KEEP(*(.external_app.app_debug_pmem.application_information));
|
KEEP(*(.external_app.app_debug_pmem.application_information));
|
||||||
*(*ui*external_app*debug_pmem*);
|
*(*ui*external_app*debug_pmem*);
|
||||||
} > ram_external_app_debug_pmem
|
} > ram_external_app_debug_pmem
|
||||||
|
|
||||||
/*
|
|
||||||
.external_app_screening : ALIGN(4) SUBALIGN(4)
|
|
||||||
{
|
|
||||||
KEEP(*(.external_app.app_screening.application_information));
|
|
||||||
*(*ui*external_app*screening*);
|
|
||||||
} > ram_external_app_screening
|
|
||||||
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -120,7 +120,7 @@ def main():
|
||||||
if validate_memory_regions(regions):
|
if validate_memory_regions(regions):
|
||||||
print("external app addr seems correct, pass")
|
print("external app addr seems correct, pass")
|
||||||
else:
|
else:
|
||||||
print("\nWARENING: It seems you are having incorrect external app addresses.")
|
print("\nWARNING: It seems you are having incorrect external app addresses.")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"err: {e}")
|
print(f"err: {e}")
|
||||||
|
|
|
@ -199,7 +199,7 @@ try:
|
||||||
if validate_memory_regions(regions):
|
if validate_memory_regions(regions):
|
||||||
print("external app addr seems correct, pass")
|
print("external app addr seems correct, pass")
|
||||||
else:
|
else:
|
||||||
print("\nWARENING: It seems you are having incorrect external app addresses.")
|
print("\nWARNING: It seems you are having incorrect external app addresses.")
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f"err: {e}")
|
print(f"err: {e}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue