mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
c00776ca22
* drivers: expose st25r3916 driver API * nfc poller: add start with custom callback * mf classic: rework sync API with poller custom start * mf ultralight: rework sync API with poller custom start * iso14443_3a poller: remove unused col res state * nfc: rework nfc poller custom start * mf ultralight: rename sync API * mf classic: rename sync API * iso14443-3a: rename sync API * nfc: remove async prefix in internal functions * nfc: expose internal API * nfc: fix sync api include and docs * targets: fix f18 build * nfc: rework NfcGenericEventEx type * nfc poller: add documentation * iso14443-3a poller: add documentation * felica poller: add documentation * iso14443_3b poller: add documentation * so14443_4a poller: add documentation * iso14443_4b poller: add documentation * iso15693 poller: add documentation * slix poller: add documentation * mf desfire poller: add documentation * mf ultralight poller: fix API and add documentation * mf classic poller: add documentation Co-authored-by: あく <alleteam@gmail.com>
58 lines
2.1 KiB
Python
58 lines
2.1 KiB
Python
Import("env")
|
|
|
|
env.Append(
|
|
CPPPATH=[
|
|
"#/lib/nfc",
|
|
],
|
|
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")
|