application.fam 848 B

123456789101112131415161718192021222324252627282930
  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_file_assets="examples",
  12. # fap_weburl="https://github.com/user/funky_flipper_app",
  13. # fap_icon_assets="images", # Image assets to compile for this application
  14. sources=[
  15. "*.c*",
  16. "!./build-embed",
  17. "!./lib/micropython"
  18. ],
  19. fap_private_libs=[
  20. Lib(
  21. name="micropython-build",
  22. cflags=[
  23. "-Wno-error",
  24. "-w"
  25. ],
  26. cincludes=["."]
  27. )
  28. ]
  29. )