Skip to content

Commit

Permalink
Added Triband receiver local oscillators
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-carboni committed Jan 10, 2025
1 parent 374921d commit 5a76a4e
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions simulators/lo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,47 @@
systems = get_multitype_systems(__file__)
servers = [
(
('0.0.0.0', 12700),
('0.0.0.0', 12700), # LO_CBAND
(),
ThreadingTCPServer,
{'system_type': 'generic_LO'}
),
(
('0.0.0.0', 12701),
('0.0.0.0', 12701), # LO_CLOW
(),
ThreadingTCPServer,
{'system_type': 'generic_LO'}
),
(
('0.0.0.0', 12702),
('0.0.0.0', 12702), # LO_KBAND
(),
ThreadingTCPServer,
{'system_type': 'generic_LO'}
),
(
('0.0.0.0', 12703),
('0.0.0.0', 12703), # LO_WBAND
(),
ThreadingTCPServer,
{'system_type': 'w_LO'}
),
(
('0.0.0.0', 12704), # LO_KQW_WHIGH
(),
ThreadingTCPServer,
{'system_type': 'generic_LO'}
),
(
('0.0.0.0', 12705), # LO_KQW_WLOW
(),
ThreadingTCPServer,
{'system_type': 'generic_LO'}
),
(
('0.0.0.0', 12706), # LO_KQW_Q
(),
ThreadingTCPServer,
{'system_type': 'generic_LO'}
),
]


Expand Down

0 comments on commit 5a76a4e

Please sign in to comment.