application.fam 411 B

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