Check file type being uploaded. (#2756)
[ExpressLRS.git] / src / python / linspace_hopfreqs_gen_915AU.py
blob8d02c288482d2b298fed9be9bf3bfba21aaa8572
1 import numpy as np
3 start = 915000000
4 stop = 928000000
5 bandwidth = 500000
6 numfreqs = 20
7 stopband = 100000
9 output = np.linspace(start, stop, numfreqs)
12 prev = start + bandwidth/2 +250000
13 startf = prev
15 for x in range(0,numfreqs):
16 print(prev)
17 prev = prev + bandwidth + stopband
20 print(startf-(start+bandwidth/2))
21 print(stop-(prev+bandwidth/2))