We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ad5571a + 67b9eae commit d24b771Copy full SHA for d24b771
MIDAS/src/hardware/telemetry_backend.cpp
@@ -23,7 +23,7 @@
23
#ifdef IS_BOOSTER
24
#define TX_FREQ 425.15
25
#else
26
-#define TX_FREQ 426.15
+#define TX_FREQ 421.15
27
#endif
28
29
#define TX_OUTPUT_POWER 22 // dBm
ground/src/feather/main.cpp
@@ -33,12 +33,16 @@
33
#define VoltagePin 14
34
// #define LED 13 // Blinks on receipt
35
36
-float RF95_FREQ = 426.15;
37
-float SUSTAINER_FREQ = 426.15;
+// True if this is the sustainer feather
+#define SUSTAINER
38
39
-float BOOSTER_FREQ = 425.15;
40
-float GROUND_FREQ = 420;
41
-float rf95_freq_MHZ = 426.15;
+#ifdef SUSTAINER
+float RF95_FREQ = 421.15;
+#else
42
+float RF95_FREQ = 425.15;
43
+#endif
44
+
45
+float rf95_freq_MHZ = RF95_FREQ;
46
47
float current_freq = 0;
48
0 commit comments