Audio Beep Test (Debug) external app (#2023)

This commit is contained in:
Mark Thompson
2024-03-22 05:10:16 -05:00
committed by GitHub
parent 692644d214
commit ba4290cf0d
9 changed files with 368 additions and 2 deletions
+6 -1
View File
@@ -40,6 +40,7 @@ MEMORY
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
}
SECTIONS
@@ -146,6 +147,10 @@ SECTIONS
*(*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
}