mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
19 lines
395 B
Text
19 lines
395 B
Text
App(
|
|
appid="NRF24_Sniffer",
|
|
name="[NRF24] Sniffer",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="nrfsniff_app",
|
|
requires=["gui"],
|
|
stack_size=2 * 1024,
|
|
order=70,
|
|
fap_icon="nrfsniff_10px.png",
|
|
fap_category="GPIO",
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="nrf24",
|
|
sources=[
|
|
"nrf24.c",
|
|
],
|
|
),
|
|
],
|
|
)
|