Both radios CW at 315.0 MHz — full power, zero spectral spread

Made-with: Cursor
This commit is contained in:
drjones
2026-04-02 20:12:13 -07:00
parent 9ed90ab4ae
commit fdc1bc28a9
2 changed files with 3 additions and 3 deletions

View File

@@ -2602,8 +2602,8 @@ void setup() {
jamPower = kPowerTable[jamPowerIdx];
preferences.putInt("jamPowerIdx", (int)jamPowerIdx);
capHistoryLoad();
// Boot policy: always start in Special jam (60 B PRNG / 10 ms); persists to NVS for startJamming().
jamMode = JamMode::SPECIAL;
// Boot policy: CW — unmodulated carrier on both radios at 315 MHz, all TX power at exactly 315 MHz.
jamMode = JamMode::CW;
preferences.putUChar("jamMode", (uint8_t)jamMode);
logLine("[NVS] jam at boot: always ON | jamPower=" + String(jamPower) + " dBm | jam_mode=" +
String(jamModeToCstr(jamMode)) + " (default on power-up)");