Show active transmission in tone test mode

This commit is contained in:
Brandon McGinty (chatgpt)
2026-08-09 22:28:52 -04:00
committed by Brandon McGinty
parent dc9dedb523
commit 612db896ce
+4
View File
@@ -69,6 +69,10 @@ func (b *Barnard) connect(reconnect bool) bool {
b.toneTestStop = make(chan struct{})
go StartToneGenerator(b.Client, b.toneTestStop)
b.Tx = true
// Tone mode starts transmitting immediately. Reflect that in the UI so
// the F8 toggle has a visible initial state and transition.
b.UpdateGeneralStatus(" Tx ", true)
b.AddOutputLine("Tone test transmission started")
b.Connected = true
return true