mirror of
https://github.com/romanz/amodem.git
synced 2026-02-06 08:38:06 +08:00
recv: require 99% for coherence and 99% of carrier duration
This commit is contained in:
@@ -29,10 +29,10 @@ else:
|
||||
HEIGHT = np.floor(np.sqrt(len(modem.freqs)))
|
||||
WIDTH = np.ceil(len(modem.freqs) / float(HEIGHT))
|
||||
|
||||
COHERENCE_THRESHOLD = 0.95
|
||||
COHERENCE_THRESHOLD = 0.99
|
||||
|
||||
CARRIER_DURATION = sum(train.prefix)
|
||||
CARRIER_THRESHOLD = int(0.95 * CARRIER_DURATION)
|
||||
CARRIER_THRESHOLD = int(0.99 * CARRIER_DURATION)
|
||||
SEARCH_WINDOW = 10 # symbols
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user