Fixed time

This commit is contained in:
Lukáš Plevač 2023-10-09 21:45:12 +02:00
parent 46da4b181a
commit e90a9bbcf0
3 changed files with 5 additions and 4 deletions

View File

@ -1,2 +1,3 @@
install:
cp baseband_spectogram.py /usr/local/bin/
cp tools/baseband_spectogram.py /usr/local/bin/
chmod +x /usr/local/bin/baseband_spectogram.py

View File

@ -1,4 +1,4 @@
masterUrl = "http://10.0.0.8"
apiKey = "a22c1e54-d35c-4058-993d-9f34c0fba428"
apiKey = "37c82347-f4fb-4552-950c-7e0767275eb6"
pullInterval = 120 # in sec
planInterval = 1200 # in sec

View File

@ -48,11 +48,11 @@ class recorder(threading.Thread):
time.sleep(50)
realStart = datetime.datetime.utcnow().timestamp()
realStart = int(datetime.datetime.now(tz=datetime.timezone.utc).timestamp())
os.system(f"satdump record {baseband} --source {self.job['receiver']['params']['radio']} --samplerate {fs} --frequency {self.job['transmitter']['centerFrequency']} --gain {self.job['receiver']['params']['gain']} --baseband_format s8 --timeout {recordTime}")
realEnd = datetime.datetime.utcnow().timestamp()
realEnd = int(datetime.datetime.now(tz=datetime.timezone.utc).timestamp())
print(f"Recorder for job {self.job['target']['name']} stoped")