From b619e52f39d50476e0f5cd92b629ac429d1e4ce5 Mon Sep 17 00:00:00 2001 From: drjones Date: Fri, 3 Apr 2026 10:21:04 -0700 Subject: [PATCH] Fix CW mode: prevent LFSR timer from overriding unmodulated carrier Made-with: Cursor --- src/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 7a5b944..be803bd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -939,6 +939,9 @@ static void startJamming() { pinMode(CC1101_2_GDO0, OUTPUT); digitalWrite(CC1101_1_GDO0, HIGH); digitalWrite(CC1101_2_GDO0, HIGH); + + s_noiseEn1 = false; // Prevent LFSR timer from overriding GDO0 + s_noiseEn2 = false; if (radio1Status == 1) { stTx1 = radio1.transmitDirectAsync();