application.fam 522 B

123456789101112131415161718192021
  1. App(
  2. appid="gps_nmea",
  3. name="[NMEA] GPS",
  4. apptype=FlipperAppType.EXTERNAL,
  5. entry_point="gps_app",
  6. requires=["gui"],
  7. stack_size=1 * 1024,
  8. order=35,
  9. fap_icon="gps_10px.png",
  10. fap_category="GPIO",
  11. fap_private_libs=[
  12. Lib(
  13. name="minmea",
  14. sources=["minmea.c"],
  15. cdefines=["timegm=mktime"],
  16. ),
  17. ],
  18. fap_author="@ezod & @xMasterX",
  19. fap_version="1.4",
  20. fap_description="Works with GPS modules via UART, using NMEA protocol.",
  21. )