mirror of
https://github.com/huuck/FlipperZeroNRFJammer.git
synced 2026-04-27 14:39:57 -07:00
33 lines
677 B
Plaintext
33 lines
677 B
Plaintext
App(
|
|
appid="nrf24_jammer",
|
|
name="[NRF24] Jammer",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="jammer_app",
|
|
requires=[
|
|
"gui",
|
|
"dialogs",
|
|
],
|
|
stack_size=2 * 1024,
|
|
order=60,
|
|
fap_icon="jammer_10px.png",
|
|
fap_category="GPIO",
|
|
fap_author="@hookgab",
|
|
fap_version=(1, 0),
|
|
fap_description="2.4Ghz jammer leveraging NRF24",
|
|
fap_icon_assets="images",
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="nrf24",
|
|
sources=[
|
|
"nrf24.c",
|
|
],
|
|
),
|
|
Lib(
|
|
name="string_polyfill",
|
|
sources=[
|
|
"stringp.c",
|
|
],
|
|
),
|
|
],
|
|
)
|