mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
feat(ble): adjust bt default scheme position
This commit is contained in:
parent
90f638e56e
commit
446239251c
@ -6,37 +6,8 @@ entries:
|
|||||||
entries:
|
entries:
|
||||||
COMMON
|
COMMON
|
||||||
|
|
||||||
[scheme:bt_default]
|
|
||||||
entries:
|
|
||||||
bt_bss -> dram0_bss
|
|
||||||
bt_common -> dram0_bss
|
|
||||||
data -> dram0_data
|
|
||||||
|
|
||||||
[scheme:bt_extram_bss]
|
[scheme:bt_extram_bss]
|
||||||
entries:
|
entries:
|
||||||
bt_bss -> extern_ram
|
bt_bss -> extern_ram
|
||||||
bt_common -> extern_ram
|
bt_common -> extern_ram
|
||||||
data -> dram0_data
|
data -> dram0_data
|
||||||
|
|
||||||
# For the following fragments, order matters for
|
|
||||||
# 'ALIGN(4) ALIGN(4, post) SURROUND(sym)', which generates:
|
|
||||||
#
|
|
||||||
# . = ALIGN(4)
|
|
||||||
# _sym_start
|
|
||||||
# ...
|
|
||||||
# . = ALIGN(4)
|
|
||||||
# _sym_end
|
|
||||||
|
|
||||||
[mapping:bt]
|
|
||||||
archive: libbt.a
|
|
||||||
entries:
|
|
||||||
if ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY = y:
|
|
||||||
* (bt_extram_bss);
|
|
||||||
bt_bss -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
|
||||||
bt_common -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
|
||||||
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
|
||||||
else:
|
|
||||||
* (bt_default);
|
|
||||||
bt_bss -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
|
||||||
bt_common -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
|
||||||
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
|
||||||
|
@ -1,3 +1,33 @@
|
|||||||
|
[scheme:bt_default]
|
||||||
|
entries:
|
||||||
|
bt_bss -> dram0_bss
|
||||||
|
bt_common -> dram0_bss
|
||||||
|
data -> dram0_data
|
||||||
|
|
||||||
|
# For the following fragments, order matters for
|
||||||
|
# 'ALIGN(4) ALIGN(4, post) SURROUND(sym)', which generates:
|
||||||
|
#
|
||||||
|
# . = ALIGN(4)
|
||||||
|
# _sym_start
|
||||||
|
# ...
|
||||||
|
# . = ALIGN(4)
|
||||||
|
# _sym_end
|
||||||
|
|
||||||
|
[mapping:bt]
|
||||||
|
archive: libbt.a
|
||||||
|
entries:
|
||||||
|
if ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY = y:
|
||||||
|
* (bt_extram_bss);
|
||||||
|
bt_bss -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
||||||
|
bt_common -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
||||||
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
||||||
|
else:
|
||||||
|
* (bt_default);
|
||||||
|
bt_bss -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
||||||
|
bt_common -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
||||||
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
||||||
|
|
||||||
|
|
||||||
[mapping:ble_app]
|
[mapping:ble_app]
|
||||||
archive: libble_app.a
|
archive: libble_app.a
|
||||||
entries:
|
entries:
|
||||||
|
@ -1,3 +1,33 @@
|
|||||||
|
[scheme:bt_default]
|
||||||
|
entries:
|
||||||
|
bt_bss -> dram0_bss
|
||||||
|
bt_common -> dram0_bss
|
||||||
|
data -> dram0_data
|
||||||
|
|
||||||
|
# For the following fragments, order matters for
|
||||||
|
# 'ALIGN(4) ALIGN(4, post) SURROUND(sym)', which generates:
|
||||||
|
#
|
||||||
|
# . = ALIGN(4)
|
||||||
|
# _sym_start
|
||||||
|
# ...
|
||||||
|
# . = ALIGN(4)
|
||||||
|
# _sym_end
|
||||||
|
|
||||||
|
[mapping:bt]
|
||||||
|
archive: libbt.a
|
||||||
|
entries:
|
||||||
|
if ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY = y:
|
||||||
|
* (bt_extram_bss);
|
||||||
|
bt_bss -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
||||||
|
bt_common -> extern_ram ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
||||||
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
||||||
|
else:
|
||||||
|
* (bt_default);
|
||||||
|
bt_bss -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_bss),
|
||||||
|
bt_common -> dram0_bss ALIGN(4) ALIGN(4, post) SURROUND(bt_common),
|
||||||
|
data -> dram0_data ALIGN(4) ALIGN(4, post) SURROUND(bt_data)
|
||||||
|
|
||||||
|
|
||||||
[mapping:btdm]
|
[mapping:btdm]
|
||||||
archive: libbtdm_app.a
|
archive: libbtdm_app.a
|
||||||
entries:
|
entries:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user