| 1234567891011121314151617181920212223 |
- App(
- appid="dolphin",
- name="DolphinSrv",
- apptype=FlipperAppType.SERVICE,
- entry_point="dolphin_srv",
- cdefines=["SRV_DOLPHIN"],
- stack_size=1 * 1024,
- order=50,
- )
- App(
- appid="passport",
- name="Passport",
- apptype=FlipperAppType.SETTINGS,
- entry_point="passport_app",
- cdefines=["APP_PASSPORT"],
- requires=[
- "gui",
- "dolphin",
- ],
- stack_size=1 * 1024,
- order=60,
- )
|