-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
motor channel is optional (wall array) ; added check to see if motors…
… are active; changed timing and logic on distance finder trigger and timeouts
- Loading branch information
Showing
3 changed files
with
81 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Two receivers each with two antennas | ||
# When a receiver is brought online it performs | ||
# phase calibration using an emitter equidistant from | ||
# both receiver antenna | ||
# The orientation of the receiver is described in | ||
# multiples of pi | ||
emitter: | ||
type: external | ||
|
||
distance-finder: | ||
trigger: 2 | ||
echo: 3 | ||
|
||
#USB PORTS | ||
#USB 2 (Radio A) | USB 1 (Radio B) | ||
receivers: | ||
#radio A | ||
- receiver-port: 2 | ||
theta-in-pis: 0 | ||
antenna-spacing-m: 0.05075 # 50.75 mm | ||
nelements: 2 | ||
array-type: linear | ||
rx-gain-mode: fast_attack | ||
rx-buffers: 4 | ||
rx-gain: -3 | ||
buffer-size: 4096 # 2**12 | ||
f-intermediate: 100000 #1.0e5 | ||
f-carrier: 2467000000 #2.5e9 | ||
f-sampling: 16000000 # 16.0e6 | ||
bandwidth: 300000 #3.0e5 | ||
#radio B | ||
- receiver-port: 1 | ||
theta-in-pis: 1 | ||
antenna-spacing-m: 0.05075 # 50.75 mm | ||
nelements: 2 | ||
array-type: linear | ||
rx-gain-mode: fast_attack | ||
rx-buffers: 4 | ||
rx-gain: -3 | ||
buffer-size: 4096 # 2**12 | ||
f-intermediate: 100000 #1.0e5 | ||
f-carrier: 2467000000 #2.5e9 | ||
f-sampling: 16000000 # 16.0e6 | ||
bandwidth: 300000 #3.0e5 | ||
|
||
n-thetas: 65 | ||
n-records-per-receiver: 600000 | ||
width: 4000 | ||
calibration-frames: 800 | ||
routine: null | ||
|
||
drone-uri: serial | ||
|
||
dry-run: True |