We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f08d86 commit 906de7dCopy full SHA for 906de7d
applications/external/spectrum_analyzer/spectrum_analyzer.c
@@ -10,7 +10,7 @@
10
#include "spectrum_analyzer_worker.h"
11
12
typedef struct {
13
- uint16_t center_freq;
+ uint32_t center_freq;
14
uint8_t width;
15
uint8_t band;
16
uint8_t vscroll;
@@ -447,7 +447,7 @@ int32_t spectrum_analyzer_app(void* p) {
447
SpectrumAnalyzerModel* model = spectrum_analyzer->model;
448
449
uint8_t vstep = VERTICAL_SHORT_STEP;
450
- uint8_t hstep;
+ uint32_t hstep;
451
452
bool exit_loop = false;
453
applications/external/spectrum_analyzer/spectrum_analyzer.h
@@ -41,7 +41,7 @@
41
#define WIDE_STEP 5000
42
#define NARROW_STEP 1000
43
#define ULTRAWIDE_STEP 20000
44
-#define ULTRANARROW_STEP 1000
+#define ULTRANARROW_STEP 500
45
#define PRECISE_STEP 100
46
47
/* margin in KHz */
0 commit comments