3
Fork 0

Update README.md

This commit is contained in:
R3ABM Artem 2019-02-16 21:15:23 +00:00
parent 3729e546c3
commit 8feefaf939

View file

@ -73,7 +73,7 @@ And add this ***BEFORE***:
```
bridge.handleChatMessage(escaped.c_str());
```
This code will pass chat messages of conference server to bridge to find talker of transmission on conference call.
This code responds to pass a chat message emitted by conference server to the bridge, required to find a talker of transmission in case of conference call.
Find this line (*void ModuleEchoLink::broadcastTalkerStatus(void)*):
@ -84,7 +84,7 @@ And add this ***BEFORE***:
```
const char* sysop_name = bridge.getTalker();
```
This code will pass call of transmisson to bridge on call of direct link.
This code responds to pass a talker of transmisson to the bridge in case of call on direct link.
Find this text (*void ModuleEchoLink::broadcastTalkerStatus(void)*):
@ -95,7 +95,7 @@ And add this ***AFTER***:
```
bridge.setTalker(talker->remoteCallsign().c_str(), talker->remoteName().c_str());
```
This code will pass call of transmisson from bridge to echolink.
This code responds to pass a talker of transmisson from the bridge to echolink.
## How to configure: