diff --git a/firmware/application/external/external.cmake b/firmware/application/external/external.cmake index 0fe502d18..be87d0374 100644 --- a/firmware/application/external/external.cmake +++ b/firmware/application/external/external.cmake @@ -196,9 +196,6 @@ set(EXTCPPSRC external/debug_pmem/main.cpp external/debug_pmem/ui_debug_pmem.cpp - #screening - # external/screening/main.cpp - # external/screening/ui_screening.cpp ) set(EXTAPPLIST @@ -249,5 +246,4 @@ set(EXTAPPLIST breakout doom debug_pmem - # screening ) diff --git a/firmware/application/external/external.ld b/firmware/application/external/external.ld index dca18bab8..c782f9898 100644 --- a/firmware/application/external/external.ld +++ b/firmware/application/external/external.ld @@ -70,8 +70,6 @@ MEMORY ram_external_app_breakout (rwx) : org = 0xADDD0000, len = 32k ram_external_app_doom (rwx) : org = 0xADDE0000, len = 32k ram_external_app_debug_pmem (rwx) : org = 0xADDF0000, len = 32k - /*ram_external_app_screening (rwx) : org = 0xADEA0000, len = 32k*/ - } SECTIONS @@ -356,15 +354,4 @@ SECTIONS KEEP(*(.external_app.app_debug_pmem.application_information)); *(*ui*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 - -*/ - - } diff --git a/firmware/tools/check_external_app_linker_script_correct.py b/firmware/tools/check_external_app_linker_script_correct.py index ba399fe52..44c6fd943 100644 --- a/firmware/tools/check_external_app_linker_script_correct.py +++ b/firmware/tools/check_external_app_linker_script_correct.py @@ -120,10 +120,10 @@ def main(): if validate_memory_regions(regions): print("external app addr seems correct, pass") 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: print(f"err: {e}") if __name__ == "__main__": - main() \ No newline at end of file + main() diff --git a/firmware/tools/make_spi_image.py b/firmware/tools/make_spi_image.py index ed5358fa0..bcbb1450f 100755 --- a/firmware/tools/make_spi_image.py +++ b/firmware/tools/make_spi_image.py @@ -199,7 +199,7 @@ try: if validate_memory_regions(regions): print("external app addr seems correct, pass") 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: print(f"err: {e}")