mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-19 11:21:39 +03:00
aa06328516
* Furi: remove direct FreeRTOS timers use * Furi: eliminate FreeRTOS headers leak. What did it cost? Everything... * SubGhz: proper public api for protocols. Format Sources. * Furi: slightly less redundant declarations * Desktop: proper types in printf * Sync API Symbols * Furi: add timer reset and fix dolphin service, fix unit tests * Furi: proper timer restart method naming and correct behavior in timer stopped state. --------- Co-authored-by: hedger <hedger@nanode.su>
36 lines
922 B
Python
36 lines
922 B
Python
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/subghz",
|
|
],
|
|
SDK_HEADERS=[
|
|
File("environment.h"),
|
|
File("receiver.h"),
|
|
File("registry.h"),
|
|
File("subghz_worker.h"),
|
|
File("subghz_tx_rx_worker.h"),
|
|
File("transmitter.h"),
|
|
File("protocols/raw.h"),
|
|
File("protocols/public_api.h"),
|
|
File("blocks/const.h"),
|
|
File("blocks/decoder.h"),
|
|
File("blocks/encoder.h"),
|
|
File("blocks/generic.h"),
|
|
File("blocks/math.h"),
|
|
File("subghz_setting.h"),
|
|
File("subghz_protocol_registry.h"),
|
|
File("devices/cc1101_configs.h"),
|
|
File("devices/cc1101_int/cc1101_int_interconnect.h"),
|
|
],
|
|
)
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="subghz")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = libenv.GlobRecursive("*.c*")
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|