forked from bettse/passy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.fam
More file actions
24 lines (23 loc) · 770 Bytes
/
application.fam
File metadata and controls
24 lines (23 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# For details & more options, see documentation/AppManifests.md in firmware repo
App(
appid="passy", # Must be unique
name="Passport Reader", # Displayed in menus
apptype=FlipperAppType.EXTERNAL,
entry_point="passy_app",
stack_size=2 * 1024,
fap_category="NFC",
# Optional values
fap_version="1.2",
fap_icon="passy.png", # 10x10 1-bit PNG
fap_description="eMRTD Reader",
fap_author="bettse",
fap_weburl="https://github.com/bettse/passy",
fap_icon_assets="images", # Image assets to compile for this application
fap_libs=["mbedtls"],
fap_private_libs=[
Lib(
name="asn1",
cflags=["-Wno-error", "-DASN_EMIT_DEBUG=0", "-Os", "-DASN_DISABLE_PER_SUPPORT=1"],
),
],
)