1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 04:34:43 +04:00

move spectrum analyzer into plugins, fix debug builds

This commit is contained in:
MX
2022-09-19 04:59:28 +03:00
parent 6f66f87fab
commit d85731636f
15 changed files with 22 additions and 5 deletions

View File

@@ -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",
], ],
) )

View File

@@ -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",
) )

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -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",