mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-10 05:59:08 -07:00
24 lines
603 B
Plaintext
24 lines
603 B
Plaintext
App(
|
|
appid="nrf24channelscanner",
|
|
name="[NRF24] Channel Scan",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="nrf24channelscanner_main",
|
|
fap_author="HTotoo",
|
|
fap_weburl="https://github.com/htotoo/NRF24ChannelScanner",
|
|
stack_size=2 * 1024,
|
|
requires=["gui"],
|
|
fap_category="GPIO",
|
|
fap_version=(1, 3),
|
|
fap_icon_assets="images",
|
|
fap_icon="fapicon.png",
|
|
fap_description="Scans 2.4Ghz frequency for usage data.",
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="nrf24",
|
|
sources=[
|
|
"nrf24.c",
|
|
],
|
|
),
|
|
],
|
|
)
|