move spectrum analyzer into plugins, fix debug builds
@@ -15,6 +15,23 @@ App(
|
|||||||
"archive",
|
"archive",
|
||||||
"clock",
|
"clock",
|
||||||
"unirfremix",
|
"unirfremix",
|
||||||
"spectrum_analyzer",
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
App(
|
||||||
|
appid="main_apps_default",
|
||||||
|
name="Basic applications for main menu",
|
||||||
|
apptype=FlipperAppType.METAPACKAGE,
|
||||||
|
provides=[
|
||||||
|
"gpio",
|
||||||
|
"ibutton",
|
||||||
|
"infrared",
|
||||||
|
"lfrfid",
|
||||||
|
"nfc",
|
||||||
|
"subghz",
|
||||||
|
"bad_usb",
|
||||||
|
"u2f",
|
||||||
|
"fap_loader",
|
||||||
|
"archive",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,11 +1,12 @@
|
|||||||
App(
|
App(
|
||||||
appid="spectrum_analyzer",
|
appid="spectrum_analyzer",
|
||||||
name="Spectrum Analyzer",
|
name="Spectrum Analyzer",
|
||||||
apptype=FlipperAppType.APP,
|
apptype=FlipperAppType.EXTERNAL,
|
||||||
entry_point="spectrum_analyzer_app",
|
entry_point="spectrum_analyzer_app",
|
||||||
cdefines=["APP_SPECTRUM_ANALYZER"],
|
cdefines=["APP_SPECTRUM_ANALYZER"],
|
||||||
requires=["gui"],
|
requires=["gui"],
|
||||||
icon="A_SpectrumAnalyzer_14",
|
|
||||||
stack_size=2 * 1024,
|
stack_size=2 * 1024,
|
||||||
order=12,
|
order=12,
|
||||||
|
fap_icon="spectrum_10px.png",
|
||||||
|
fap_category="Tools",
|
||||||
)
|
)
|
||||||
BIN
applications/plugins/spectrum_analyzer/spectrum_10px.png
Normal file
|
After Width: | Height: | Size: 135 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
@@ -1 +0,0 @@
|
|||||||
4
|
|
||||||
@@ -82,7 +82,7 @@ FIRMWARE_APPS = {
|
|||||||
# Svc
|
# Svc
|
||||||
"basic_services",
|
"basic_services",
|
||||||
# Apps
|
# Apps
|
||||||
"main_apps",
|
"main_apps_default",
|
||||||
"system_apps",
|
"system_apps",
|
||||||
# Settings
|
# Settings
|
||||||
"settings_apps",
|
"settings_apps",
|
||||||
|
|||||||