Fixed README
This commit is contained in:
parent
68c0249865
commit
3a1c896fe4
1 changed files with 69 additions and 27 deletions
|
@ -1,45 +1,87 @@
|
||||||
SVXLink patch to bridge with BrandMeister
|
# SVXLink patch to bridge with BrandMeister
|
||||||
Copyright 2015 by Artem Prilutskiy
|
|
||||||
-----------------------------------------
|
Copyright 2015-2018 by Artem Prilutskiy
|
||||||
|
|
||||||
|
The main purpose for this patch is to pass a callsign and talker alias between echolink and DMR.
|
||||||
|
|
||||||
|
## How to install:
|
||||||
|
|
||||||
Put PatchCord.* and BrandMeisterBridge.* into src/modules/echolink
|
Put PatchCord.* and BrandMeisterBridge.* into src/modules/echolink
|
||||||
|
|
||||||
Add following lines to CMakeLists.txt after "set(MODSRC QsoImpl.cpp)":
|
Add following lines to CMakeLists.txt after "set(MODSRC QsoImpl.cpp)":
|
||||||
|
```
|
||||||
pkg_check_modules(DBUS dbus-1)
|
pkg_check_modules(DBUS dbus-1)
|
||||||
include_directories(${DBUS_INCLUDE_DIRS})
|
include_directories(${DBUS_INCLUDE_DIRS})
|
||||||
set(LIBS ${LIBS} ${DBUS_LIBRARIES})
|
set(LIBS ${LIBS} ${DBUS_LIBRARIES})
|
||||||
set(MODSRC ${MODSRC} PatchCord.cpp BrandMeisterBridge.cpp)
|
set(MODSRC ${MODSRC} PatchCord.cpp BrandMeisterBridge.cpp)
|
||||||
|
```
|
||||||
|
|
||||||
Add following lines to ModuleEchoLink.h:
|
### Add following lines to ModuleEchoLink.h:
|
||||||
|
|
||||||
[#include "BrandMeisterBridge.h"]
|
Find this:
|
||||||
after
|
```#include "version/SVXLINK.h"```
|
||||||
[#include "version/SVXLINK.h"]
|
and add ***ADFTER***:
|
||||||
|
```include "BrandMeisterBridge.h"```
|
||||||
|
|
||||||
[BrandMeisterBridge bridge;]
|
Find this:
|
||||||
after
|
```private:```
|
||||||
[private:]
|
and add ***ADFTER***:
|
||||||
|
```BrandMeisterBridge bridge;```
|
||||||
|
|
||||||
|
### Add following lines to ModuleEchoLink.cpp:
|
||||||
|
|
||||||
|
Find this (*bool ModuleEchoLink::initialize(void)*):
|
||||||
|
```
|
||||||
|
IpAddress bind_addr;
|
||||||
|
if (cfg().getValue(cfgName(), "BIND_ADDR", bind_addr) && bind_addr.isEmpty())
|
||||||
|
{
|
||||||
|
cerr << "*** ERROR: Invalid configuration value for " << cfgName()
|
||||||
|
<< "/BIND_ADDR specified.\n";
|
||||||
|
moduleCleanup();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
And put next lines:
|
||||||
|
```
|
||||||
|
if (cfg().getValue(cfgName(), "BRIDGE_DEFAULT", value))
|
||||||
|
{
|
||||||
|
bridge.setDefaultConfiguration(value.c_str());
|
||||||
|
}
|
||||||
|
if (cfg().getValue(cfgName(), "BRIDGE_PROXY", value))
|
||||||
|
{
|
||||||
|
bridge.setProxyConfiguration(value.c_str());
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Find this text (*void ModuleEchoLink::onChatMsgReceived(QsoImpl *qso, const string& msg)*):
|
||||||
|
```
|
||||||
|
processEvent(ss.str());
|
||||||
|
```
|
||||||
|
And add ***BEFORE***:
|
||||||
|
```bridge.handleChatMessage(escaped.c_str());```
|
||||||
|
|
||||||
|
|
||||||
Add following lines to method "ModuleEchoLink::broadcastTalkerStatus" of ModuleEchoLink.cpp:
|
Find this text (*void ModuleEchoLink::broadcastTalkerStatus(void)*):
|
||||||
|
```
|
||||||
[const char* sysop_name = bridge.getTalker();]
|
msg << "> " << mycall << " " << sysop_name << "\n\n";
|
||||||
before
|
```
|
||||||
[msg << "> " << mycall << " " << sysop_name << "\n\n";]
|
And add ***BEFORE***:
|
||||||
|
```const char* sysop_name = bridge.getTalker();```
|
||||||
[bridge.setTalker(talker->remoteCallsign().c_str(), talker->remoteName().c_str());]
|
|
||||||
before
|
|
||||||
[msg << "> " << talker->remoteCallsign() << " " << talker->remoteName() << "\n\n";]
|
|
||||||
|
|
||||||
|
|
||||||
Add following lines to method "ModuleEchoLink::onChatMsgReceived" of ModuleEchoLink.cpp:
|
Find this text (*void ModuleEchoLink::broadcastTalkerStatus(void)*):
|
||||||
[bridge.handleChatMessage(escaped.c_str());]
|
```msg << "> " << talker->remoteCallsign() << " " << talker->remoteName() << "\n\n";```
|
||||||
before
|
And add ***AFTER***:
|
||||||
[processEvent(ss.str());]
|
```bridge.setTalker(talker->remoteCallsign().c_str(), talker->remoteName().c_str());```
|
||||||
|
|
||||||
|
|
||||||
Configuration of bridge are hand-coded inside BrandMeisterBridge.cpp:
|
## How to configure:
|
||||||
|
|
||||||
|
Add folowing lines to your *ModuleEchoLink.conf*
|
||||||
|
|
||||||
|
BRIDGE_DEFAULT=9504
|
||||||
|
BRIDGE_PROXY=2501:10
|
||||||
|
|
||||||
|
Where BRIDGE_DEFAULT is a default ID of callee that will be passed when ID cannot be resolved by callsign (most possible this callsign has not been registred in DMR database)
|
||||||
|
BRIDGE_PROXY should correspond to Network ID of BrandMeister Server and Cord ID connected to.
|
||||||
|
|
||||||
Please configure PatchCord to number 10 in BrandMeister.conf
|
|
||||||
Configuration of MySQL connection should be placed in /opt/BrandMeister/Registry.cnf
|
|
Loading…
Add table
Reference in a new issue