mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-09-23 15:34:20 +00:00
18 lines
528 B
Python
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("."),
|
|
],
|
|
)
|