mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-24 15:30:11 +00:00
21 lines
435 B
Plaintext
21 lines
435 B
Plaintext
|
App(
|
||
|
appid="Nrf24_Scanner",
|
||
|
name="[NRF24] Scanner",
|
||
|
apptype=FlipperAppType.EXTERNAL,
|
||
|
entry_point="nrf24scan_app",
|
||
|
cdefines=["APP_NRF24SCAN"],
|
||
|
requires=["gui"],
|
||
|
stack_size=2 * 1024,
|
||
|
order=60,
|
||
|
fap_icon="nrf24scan_10px.png",
|
||
|
fap_category="GPIO_Extra",
|
||
|
fap_private_libs=[
|
||
|
Lib(
|
||
|
name="nrf24",
|
||
|
sources=[
|
||
|
"nrf24.c",
|
||
|
],
|
||
|
),
|
||
|
],
|
||
|
)
|