summaryrefslogtreecommitdiff
path: root/STM32H750ZBTX_FLASH.ld
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-08-17 00:01:22 -0500
committerozpv <39195175+ozpv@users.noreply.github.com>2026-08-17 00:01:22 -0500
commit2f60747dd3b51321903de9c51789765d41ed83e4 (patch)
tree29b414376f804719480a98963afeeb3a66beb039 /STM32H750ZBTX_FLASH.ld
parentfddef9d200acd8f715d42f94b42722f2a2ee6600 (diff)
audio driver
Diffstat (limited to 'STM32H750ZBTX_FLASH.ld')
-rwxr-xr-xSTM32H750ZBTX_FLASH.ld10
1 files changed, 10 insertions, 0 deletions
diff --git a/STM32H750ZBTX_FLASH.ld b/STM32H750ZBTX_FLASH.ld
index 9645a88..972ca74 100755
--- a/STM32H750ZBTX_FLASH.ld
+++ b/STM32H750ZBTX_FLASH.ld
@@ -175,6 +175,16 @@ SECTIONS
}
.ARM.attributes 0 : { *(.ARM.attributes) }
+
+ .audio_buffers (NOLOAD):
+ {
+ . = ALIGN(32);
+ _saudio_buffers = .;
+ *(.audio_buffers)
+ *(.audio_buffers*)
+ . = ALIGN(32);
+ _eaudio_buffers = .;
+ } >RAM_D1
}