This commit is contained in:
2026-04-24 18:54:27 +02:00
parent c84018fbeb
commit 319670a013
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -166,7 +166,7 @@ func (a *App) updateTracking() {
// Doppler: only when globally enabled AND tracking enabled for this sat AND el >= 0 // Doppler: only when globally enabled AND tracking enabled for this sat AND el >= 0
if a.activeRadio().IsConnected() && pos.Elevation >= 0 && a.dopplerEnabled && a.trackFreqMode { if a.activeRadio().IsConnected() && pos.Elevation >= 0 && a.dopplerEnabled && a.trackFreqMode {
upFreq, downFreq := a.dopplerCalc.Correct(pos, obs, now) downFreq, upFreq := a.dopplerCalc.Correct(pos, obs, now)
if err := a.activeRadio().SetFrequency(downFreq, upFreq); err != nil { if err := a.activeRadio().SetFrequency(downFreq, upFreq); err != nil {
log.Printf("[Doppler] SetFrequency error: %v", err) log.Printf("[Doppler] SetFrequency error: %v", err)
} }
Binary file not shown.
+1 -1
View File
@@ -61,7 +61,7 @@ const DB = [
displayName: 'ISS', displayName: 'ISS',
type: SAT_TYPE.FM, type: SAT_TYPE.FM,
freqs: [ freqs: [
{ downHz: 437800000, upHz: 149990000, mode: 'FM', notes: 'FM Voice répéteur, CTCSS 67.0 Hz. Active sometimes.' }, { downHz: 437800000, upHz: 145990000, mode: 'FM', notes: 'FM Voice répéteur, CTCSS 67.0 Hz. Active sometimes.' },
{ downHz: 144825000, upHz: 0, mode: 'APRS', notes: 'APRS Europe 144.825 MHz / 1200bps AFSK' }, { downHz: 144825000, upHz: 0, mode: 'APRS', notes: 'APRS Europe 144.825 MHz / 1200bps AFSK' },
] ]
}, },