mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
29 lines
934 B
Text
29 lines
934 B
Text
App(
|
|
appid="esp32_wifi_marauder",
|
|
name="[ESP32] WiFi Marauder",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="wifi_marauder_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",
|
|
)
|