Files
Flipper-ARF/lib/subghz/SConscript
T
2026-09-18 16:29:17 +00:00

18 lines
528 B
Python

Import("env")
# The SubGHz protocol library is no longer linked into the firmware image. It is
# compiled privately into each app that uses it (see the SubGHz app's
# fap_private_libs) and, for the SubGHz app, executed from an internal-flash XIP
# region at runtime. This SConscript is retained so the header include path and
# lint sources stay available; it no longer builds a static library for the
# internal firmware.
env.Append(
CPPPATH=[
"#/lib/subghz",
],
LINT_SOURCES=[
Dir("."),
],
)