Skip to content

Commit

Permalink
fix local data recording max doa output
Browse files Browse the repository at this point in the history
  • Loading branch information
krakenrf authored Jul 4, 2024
1 parent 1d5a6f8 commit 4de18a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _sdr/_signal_processing/kraken_sdr_signal_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ def average_thetas(thetas):
for j, freq in enumerate(self.freq_list):
# KrakenSDR Android App Output
sub_message = ""
sub_message += f"{self.timestamp}, {self.theta_0_list[j]}, {self.confidence_list[j]}, {self.max_power_level_list[j]}, "
sub_message += f"{self.timestamp}, {360 - self.theta_0_list[j]}, {self.confidence_list[j]}, {self.max_power_level_list[j]}, "
sub_message += f"{freq}, {self.DOA_ant_alignment}, {self.latency}, {self.station_id}, "
sub_message += f"{self.latitude}, {self.longitude}, {self.heading}, {self.heading}, "
sub_message += "GPS, R, R, R, R" # Reserve 6 entries for other things # NOTE: Second heading is reserved for GPS heading / compass heading differentiation
Expand Down

0 comments on commit 4de18a0

Please sign in to comment.