mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
1d17206e23
* 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>
52 lines
888 B
Python
52 lines
888 B
Python
Import("env")
|
|
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/",
|
|
"#/lib", # TODO FL-3553: remove!
|
|
# Ugly hack
|
|
Dir("../assets/compiled"),
|
|
],
|
|
)
|
|
|
|
|
|
libs = env.BuildModules(
|
|
[
|
|
"tlsf",
|
|
"mlib",
|
|
"stm32wb",
|
|
"freertos",
|
|
"print",
|
|
"microtar",
|
|
"mbedtls",
|
|
"toolbox",
|
|
"libusb_stm32",
|
|
"drivers",
|
|
"fatfs",
|
|
"flipper_format",
|
|
"one_wire",
|
|
"ibutton",
|
|
"infrared",
|
|
"littlefs",
|
|
"subghz",
|
|
"nfc",
|
|
"digital_signal",
|
|
"pulse_reader",
|
|
"signal_reader",
|
|
"appframe",
|
|
"u8g2",
|
|
"lfrfid",
|
|
"flipper_application",
|
|
"music_worker",
|
|
"mjs",
|
|
"nanopb",
|
|
"update_util",
|
|
"heatshrink",
|
|
"ble_profile",
|
|
"bit_lib",
|
|
"datetime",
|
|
],
|
|
)
|
|
|
|
Return("libs")
|