application.fam 508 B

123456789101112131415161718192021
  1. App(
  2. appid="notification",
  3. name="NotificationSrv",
  4. apptype=FlipperAppType.SERVICE,
  5. entry_point="notification_srv",
  6. cdefines=["SRV_NOTIFICATION"],
  7. requires=["input"],
  8. provides=["notification_settings"],
  9. stack_size=int(1.5 * 1024),
  10. order=100,
  11. )
  12. App(
  13. appid="notification_settings",
  14. name="LCD and Notifications",
  15. apptype=FlipperAppType.SETTINGS,
  16. entry_point="notification_settings_app",
  17. requires=["notification"],
  18. stack_size=1 * 1024,
  19. order=20,
  20. )