application.fam 431 B

123456789101112131415161718192021222324
  1. App(
  2. appid="nfc",
  3. name="NFC",
  4. apptype=FlipperAppType.APP,
  5. targets=["f7"],
  6. entry_point="nfc_app",
  7. cdefines=["APP_NFC"],
  8. requires=[
  9. "gui",
  10. "dialogs",
  11. ],
  12. provides=["nfc_start"],
  13. icon="A_NFC_14",
  14. stack_size=5 * 1024,
  15. order=30,
  16. )
  17. App(
  18. appid="nfc_start",
  19. apptype=FlipperAppType.STARTUP,
  20. entry_point="nfc_on_system_start",
  21. requires=["nfc"],
  22. order=30,
  23. )