mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-06 05:19:09 -07:00
31 lines
881 B
Plaintext
31 lines
881 B
Plaintext
App(
|
|
appid="esp_flasher",
|
|
name="[ESP] Flasher",
|
|
fap_version=(1, 1),
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="esp_flasher_app",
|
|
requires=["gui"],
|
|
stack_size=4 * 1024,
|
|
order=90,
|
|
fap_icon="wifi_10px.png",
|
|
fap_category="GPIO",
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="esp-serial-flasher",
|
|
fap_include_paths=["include"],
|
|
sources=[
|
|
"src/esp_loader.c",
|
|
"src/esp_targets.c",
|
|
"src/md5_hash.c",
|
|
"src/protocol_common.c",
|
|
"src/protocol_uart.c",
|
|
"src/slip.c",
|
|
],
|
|
cincludes=["lib/esp-serial-flasher/private_include"],
|
|
cdefines=["SERIAL_FLASHER_INTERFACE_UART=1", "MD5_ENABLED=1"],
|
|
),
|
|
],
|
|
cdefines=["SERIAL_FLASHER_INTERFACE_UART=1"],
|
|
fap_icon_assets="assets",
|
|
)
|