Skip to content

Commit

Permalink
Added app descriptions (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
hedger authored Aug 3, 2023
1 parent 6300982 commit e445072
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions avr_isp_programmer/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="avr_isp",
name="AVR Flasher",
description="Application for flashing AVR microcontrollers",
apptype=FlipperAppType.EXTERNAL,
entry_point="avr_isp_app",
requires=["gui"],
Expand Down
1 change: 1 addition & 0 deletions dap_link/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="dap_link",
name="DAP Link",
description="Enables use of Flipper as a debug probe for ARM devices, implements the CMSIS-DAP protocol",
apptype=FlipperAppType.EXTERNAL,
entry_point="dap_link_app",
requires=[
Expand Down
2 changes: 2 additions & 0 deletions hid_app/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="hid_usb",
name="Remote",
description="Use Flipper as a HID remote control over USB",
apptype=FlipperAppType.EXTERNAL,
entry_point="hid_usb_app",
stack_size=1 * 1024,
Expand All @@ -14,6 +15,7 @@ App(
App(
appid="hid_ble",
name="Remote",
description="Use Flipper as a HID remote control over Bluetooth",
apptype=FlipperAppType.EXTERNAL,
entry_point="hid_ble_app",
stack_size=1 * 1024,
Expand Down
1 change: 1 addition & 0 deletions mass_storage/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ App(
appid="mass_storage",
name="Mass Storage",
apptype=FlipperAppType.EXTERNAL,
description="Implements a mass storage device over USB for disk images",
entry_point="mass_storage_app",
requires=[
"gui",
Expand Down
3 changes: 2 additions & 1 deletion mfkey32/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="mfkey32",
name="Mfkey32",
description="Mf Classic key finder",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="mfkey32_main",
Expand All @@ -10,7 +11,7 @@ App(
],
stack_size=1 * 1024,
fap_icon="mfkey.png",
fap_category="Nfc",
fap_category="NFC",
fap_author="noproto",
fap_icon_assets="images",
fap_weburl="https://github.com/noproto/FlipperMfkey",
Expand Down
1 change: 1 addition & 0 deletions nfc_magic/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="nfc_magic",
name="Nfc Magic",
description="Application for writing to NFC tags with modifiable sector 0",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="nfc_magic_app",
Expand Down
1 change: 1 addition & 0 deletions nfc_rfid_detector/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="nfc_rfid_detector",
name="NFC/RFID detector",
description="Identify the reader type: NFC (12.54 MHz) and/or RFID (125 KHz)",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="nfc_rfid_detector_app",
Expand Down
1 change: 1 addition & 0 deletions picopass/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="picopass",
name="PicoPass",
description="App to communicate with NFC tags using the PicoPass format",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="picopass_app",
Expand Down
1 change: 1 addition & 0 deletions signal_generator/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="signal_generator",
name="Signal Generator",
description="Control GPIO pins to generate digital signals",
apptype=FlipperAppType.EXTERNAL,
entry_point="signal_gen_app",
requires=["gui"],
Expand Down
1 change: 1 addition & 0 deletions spi_mem_manager/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="spi_mem_manager",
name="SPI Mem Manager",
description="Application for reading and writing 25-series SPI memory chips",
apptype=FlipperAppType.EXTERNAL,
entry_point="spi_mem_app",
requires=["gui"],
Expand Down
1 change: 1 addition & 0 deletions weather_station/application.fam
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
App(
appid="weather_station",
name="Weather Station",
description="Receive weather data from a wide range of supported Sub-1GHz remote sensor",
apptype=FlipperAppType.EXTERNAL,
targets=["f7"],
entry_point="weather_station_app",
Expand Down

0 comments on commit e445072

Please sign in to comment.