application.fam 816 B

1234567891011121314151617181920212223242526272829
  1. # For details & more options, see documentation/AppManifests.md in firmware repo
  2. App(
  3. appid="mp_flipper_app", # Must be unique
  4. name="uPython", # Displayed in menus
  5. apptype=FlipperAppType.EXTERNAL,
  6. entry_point="mp_flipper_app",
  7. stack_size=2 * 1024,
  8. fap_category="Examples",
  9. fap_icon="icon.png", # 10x10 1-bit PNG
  10. fap_author="Oliver Fabel",
  11. # fap_weburl="https://github.com/user/funky_flipper_app",
  12. # fap_icon_assets="images", # Image assets to compile for this application
  13. sources=[
  14. "*.c*",
  15. "!./build-embed",
  16. "!./lib/micropython"
  17. ],
  18. fap_private_libs=[
  19. Lib(
  20. name="micropython-build",
  21. cflags=[
  22. "-Wno-error",
  23. "-w"
  24. ],
  25. cincludes=["."]
  26. )
  27. ]
  28. )