application.fam 455 B

123456789101112131415161718192021222324
  1. App(
  2. appid="subghz",
  3. name="Sub-GHz",
  4. apptype=FlipperAppType.APP,
  5. entry_point="subghz_app",
  6. cdefines=["APP_SUBGHZ"],
  7. requires=[
  8. "gui",
  9. "cli",
  10. "dialogs",
  11. ],
  12. provides=["subghz_start"],
  13. icon="A_Sub1ghz_14",
  14. stack_size=2 * 1024,
  15. order=10,
  16. )
  17. App(
  18. appid="subghz_start",
  19. apptype=FlipperAppType.STARTUP,
  20. entry_point="subghz_on_system_start",
  21. requires=["subghz"],
  22. order=40,
  23. )