mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
19 lines
440 B
Plaintext
19 lines
440 B
Plaintext
App(
|
|
appid="avr_isp",
|
|
name="[AVR] AVR Flasher",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="avr_isp_app",
|
|
requires=["gui"],
|
|
stack_size=4 * 1024,
|
|
fap_description="Application for flashing AVR microcontrollers",
|
|
fap_version="1.0",
|
|
fap_icon="avr_app_icon_10x10.png",
|
|
fap_category="GPIO",
|
|
fap_icon_assets="images",
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="driver",
|
|
),
|
|
],
|
|
)
|