channel sync test
This commit is contained in:
parent
281b18b6ca
commit
c13b513026
12
test/fft.py
12
test/fft.py
@ -1,12 +0,0 @@
|
||||
#!/bin/env python3
|
||||
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
data = []
|
||||
|
||||
with open("test", "rb") as f:
|
||||
data = np.fromfile(f, dtype=np.int16)
|
||||
|
||||
plt.psd(data, Fs=1e6)
|
||||
plt.show()
|
BIN
test/sync/correlation.png
Normal file
BIN
test/sync/correlation.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
BIN
test/sync/difference-of-channels-1.png
Normal file
BIN
test/sync/difference-of-channels-1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 59 KiB |
BIN
test/sync/difference-of-channels-2.png
Normal file
BIN
test/sync/difference-of-channels-2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 62 KiB |
32
test/sync/sync.py
Normal file
32
test/sync/sync.py
Normal file
@ -0,0 +1,32 @@
|
||||
# this script helps to verify if the 2 channels of
|
||||
# the picoscope are sampled synchronously (as stated in the datasheet)
|
||||
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
# the input is the same square wave on both channels
|
||||
# stored as an array of pairs of float32-s
|
||||
data = np.fromfile("sync_test.bin", dtype=np.float32)
|
||||
|
||||
# if the i and q channels are perfectly indetical and in sync
|
||||
# their difference should be const 0
|
||||
diff = data[0::2] - data[1::2]
|
||||
plt.plot(diff[:10000], label="I - Q")
|
||||
plt.title("Difference of channels")
|
||||
plt.legend()
|
||||
plt.show()
|
||||
# this is not exactly the case, channel b seems to be
|
||||
# a higher value at the changes in the signal
|
||||
# maybe the two channels are sampled synchronously
|
||||
# but with a small delay (less than a sample length)
|
||||
|
||||
# if the signals are sampled with
|
||||
plt.figure()
|
||||
corr = np.correlate(data[0::2][:10000], data[1::2][:10000], mode="full")
|
||||
print(f"Index of maximum (starting from 0, to 10000):", np.argmax(corr))
|
||||
# 9999 -> index of last element in the array -> complete overlap without offset
|
||||
plt.plot(corr)
|
||||
plt.title("Correlation")
|
||||
plt.show()
|
||||
# the maximum of the correlation is when the two signals perfectly overlap without
|
||||
# and offset, this means that they are sampled at the same time
|
12
test/view.py
12
test/view.py
@ -1,12 +0,0 @@
|
||||
#!/bin/env python3
|
||||
|
||||
import numpy as np
|
||||
import matplotlib.pyplot as plt
|
||||
|
||||
data = []
|
||||
|
||||
with open("test", "rb") as f:
|
||||
data = np.fromfile(f, dtype=np.int16)
|
||||
|
||||
plt.plot(data[:10000])
|
||||
plt.show()
|
Loading…
Reference in New Issue
Block a user