unleashed-firmware/targets/f7/target.json
Sergei Gavrilov 1d17206e23
TLSF memory allocator. Less free flash, moar free ram. (#3572)
* add tlsf as submodule
* libs: tlsf
* Furi: tlsf as allocator
* Furi: heap walker
* shmal fixshesh
* f18: tlsf
* PVS: ignore tlsf
* I like to moving
* merge upcoming changes
* memmgr: alloc aligned, realloc
* Furi: distinct name for auxiliary memory pool
* Furi: put idle and timer thread to mem2
* Furi: fix smal things in allocator
* Furi: remove aligned_free. Use free instead.
* aligned_malloc -> aligned_alloc
* aligned_alloc, parameters order
* aligned_alloc: check that alignment is correct
* unit test: malloc
* unit tests: realloc and test with memory fragmentation
* unit tests: aligned_alloc
* update api
* updater: properly read large update file

Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2024-05-15 16:47:21 +01:00

59 lines
1.3 KiB
JSON

{
"include_paths": [
"ble_glue",
"fatfs",
"furi_hal",
"inc"
],
"sdk_header_paths": [
"../furi_hal_include",
"furi_hal",
"platform_specific",
"ble_glue/furi_ble",
"ble_glue/services",
"ble_glue/profiles"
],
"startup_script": "startup_stm32wb55xx_cm4.s",
"linker_script_flash": "stm32wb55xx_flash.ld",
"linker_script_ram": "stm32wb55xx_ram_fw.ld",
"linker_script_app": "application_ext.ld",
"sdk_symbols": "api_symbols.csv",
"linker_dependencies": [
"print",
"flipper7",
"furi",
"tlsf",
"freertos",
"stm32wb",
"hwdrivers",
"fatfs",
"littlefs",
"subghz",
"toolbox",
"nfc",
"digital_signal",
"pulse_reader",
"signal_reader",
"microtar",
"usb_stm32",
"infrared",
"appframe",
"assets",
"one_wire",
"ibutton",
"music_worker",
"mjs",
"mbedtls",
"lfrfid",
"flipper_application",
"toolbox",
"u8g2",
"nanopb",
"update_util",
"heatshrink",
"flipperformat",
"flipper7",
"bit_lib",
"datetime"
]
}