mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-03-04 23:17:21 +00:00
* examples: plugins: utilize fal_embedded * libs: removed fnv1a_hash * furi: added FURI_PACKED; apps, libs: changed to use FURI_PACKED * lib: mbedtls: using custom config * lib: toolbox: removed md5, switched to mbedtls * targets: f18: link fix * lib: added mbedtls_cfg.h * apps: nfc: explicit dependency on libmbedtls * u2f: reworking to mbedtls * u2f: replaced sha256 & hmac with mbedtls * u2f: functional rework using mbedtls * libs: dropped micro-ecc * u2f: dropped old implementation * toolbox: removed sha256 impl * mcheck() for mbedtls * libs: removed libmisc; split into smaller libs * apps: debug: fixed display_test * apps: include cleanups * fbt: fixed VERSIONCOMSTR * furi: added FURI_CHECK_RETURN * lib: removed qrcode * cleanup * fbt: lint_py+format_py: fixed excessive command length * api: Removed bzero from f7 * api: Removed bzero from f18 * Bump API Symbols Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
61 lines
2.1 KiB
Python
61 lines
2.1 KiB
Python
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/nfc",
|
|
],
|
|
LINT_SOURCES=[
|
|
Dir("."),
|
|
],
|
|
SDK_HEADERS=[
|
|
# Main
|
|
File("nfc.h"),
|
|
File("nfc_device.h"),
|
|
File("nfc_listener.h"),
|
|
File("nfc_poller.h"),
|
|
File("nfc_scanner.h"),
|
|
# Protocols
|
|
File("protocols/iso14443_3a/iso14443_3a.h"),
|
|
File("protocols/iso14443_3b/iso14443_3b.h"),
|
|
File("protocols/iso14443_4a/iso14443_4a.h"),
|
|
File("protocols/iso14443_4b/iso14443_4b.h"),
|
|
File("protocols/mf_ultralight/mf_ultralight.h"),
|
|
File("protocols/mf_classic/mf_classic.h"),
|
|
File("protocols/mf_desfire/mf_desfire.h"),
|
|
File("protocols/slix/slix.h"),
|
|
File("protocols/st25tb/st25tb.h"),
|
|
# Pollers
|
|
File("protocols/iso14443_3a/iso14443_3a_poller.h"),
|
|
File("protocols/iso14443_3b/iso14443_3b_poller.h"),
|
|
File("protocols/iso14443_4a/iso14443_4a_poller.h"),
|
|
File("protocols/iso14443_4b/iso14443_4b_poller.h"),
|
|
File("protocols/mf_ultralight/mf_ultralight_poller.h"),
|
|
File("protocols/mf_classic/mf_classic_poller.h"),
|
|
File("protocols/mf_desfire/mf_desfire_poller.h"),
|
|
File("protocols/st25tb/st25tb_poller.h"),
|
|
# Listeners
|
|
File("protocols/iso14443_3a/iso14443_3a_listener.h"),
|
|
File("protocols/iso14443_4a/iso14443_4a_listener.h"),
|
|
File("protocols/mf_ultralight/mf_ultralight_listener.h"),
|
|
File("protocols/mf_classic/mf_classic_listener.h"),
|
|
# Sync API
|
|
File("protocols/iso14443_3a/iso14443_3a_poller_sync.h"),
|
|
File("protocols/mf_ultralight/mf_ultralight_poller_sync.h"),
|
|
File("protocols/mf_classic/mf_classic_poller_sync.h"),
|
|
# Misc
|
|
File("helpers/nfc_util.h"),
|
|
File("helpers/iso14443_crc.h"),
|
|
File("helpers/iso13239_crc.h"),
|
|
File("helpers/nfc_data_generator.h"),
|
|
File("helpers/nfc_dict.h"),
|
|
],
|
|
)
|
|
|
|
libenv = env.Clone(FW_LIB_NAME="nfc")
|
|
libenv.ApplyLibFlags()
|
|
|
|
sources = libenv.GlobRecursive("*.c*")
|
|
|
|
lib = libenv.StaticLibrary("${FW_LIB_NAME}", sources)
|
|
libenv.Install("${LIB_DIST_DIR}", lib)
|
|
Return("lib")
|