Skip to content

Commit

Permalink
Fix two-way udp example
Browse files Browse the repository at this point in the history
  • Loading branch information
svpcom committed Sep 26, 2024
1 parent a0cb1f2 commit 09c1e2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wfb_ng/conf/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -139,15 +139,15 @@ link_domain = "default"
## Example of custom profiles not related to drones

[two_way_udp_example_side_a]
streams = [{'name': 'audio', 'stream_rx': 0x30, 'stream_tx': 0x30, 'service_type': 'udp_proxy',
'profiles': ['base', 'radio_base'], 'peer': 'connect://127.0.0.1:1235', 'keypair': 'drone.key'}]
streams = [{'name': 'audio', 'stream_rx': 0xb0, 'stream_tx': 0x30, 'service_type': 'udp_proxy',
'profiles': ['base', 'radio_base'], 'peer': 'listen://127.0.0.1:1235', 'keypair': 'drone.key'}]

stats_port = 8004
link_domain = "test_two_way_udp"

[two_way_udp_example_side_b]
streams = [{'name': 'audio', 'stream_rx': 0x30, 'stream_tx': 0x30, 'service_type': 'udp_proxy',
'profiles': ['base', 'radio_base'], 'peer': 'listen://127.0.0.1:1234', 'keypair': 'gs.key'}]
streams = [{'name': 'audio', 'stream_rx': 0x30, 'stream_tx': 0xb0, 'service_type': 'udp_proxy',
'profiles': ['base', 'radio_base'], 'peer': 'connect://127.0.0.1:1234', 'keypair': 'gs.key'}]

stats_port = 8005
link_domain = "test_two_way_udp"
Expand Down

0 comments on commit 09c1e2e

Please sign in to comment.