application.fam 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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=4 * 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. Lib(
  29. name="micropython-port",
  30. cflags=[
  31. "-Wno-error",
  32. "-w"
  33. ],
  34. cincludes=["."]
  35. ),
  36. ]
  37. )