4
Fork 0
AutoPatch/SVXLink
Artem Prilutskiy f9bcb35800 ..
2017-01-05 21:35:55 +03:00
..
echolink .. 2017-01-05 21:35:55 +03:00
build.sh Initial import 2016-03-23 20:08:20 +03:00
Makefile Initial import 2016-03-23 20:08:20 +03:00
ModuleEchoLink.conf Updated to support actual D-BUS interface 2016-04-04 23:22:28 +03:00
readme.txt Initial import 2016-03-23 20:08:20 +03:00
svxlink.conf Initial import 2016-03-23 20:08:20 +03:00
svxlink.service Initial import 2016-03-23 20:08:20 +03:00
Test.cpp Initial import 2016-03-23 20:08:20 +03:00

SVXLink patch to bridge with BrandMeister
Copyright 2015 by Artem Prilutskiy
-----------------------------------------

Put UserDataStore.*, PatchCordProxy.* and BrandMeisterBridge.* into src/modules/echolink

Add following lines to CMakeLists.txt after "set(MODSRC QsoImpl.cpp)":

pkg_check_modules(DBUS dbus-1)
include_directories(${DBUS_INCLUDE_DIRS})
set(LIBS ${LIBS} ${DBUS_LIBRARIES} mysqlclient)
set(MODSRC ${MODSRC} PatchCordProxy.cpp UserDataStore.cpp BrandMeisterBridge.cpp)

Add following lines to ModuleEchoLink.h:

[#include "BrandMeisterBridge.h"]
  after
    [#include "version/SVXLINK.h"]

[BrandMeisterBridge bridge;]
  after
    [private:]


Add following lines to method "ModuleEchoLink::broadcastTalkerStatus" of ModuleEchoLink.cpp:

[const char* sysop_name = bridge.getTalker();]
  before
    [msg << "> " << mycall << "         " << sysop_name << "\n\n";]

[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:
[bridge.handleChatMessage(escaped.c_str());]
  before
    [processEvent(ss.str());]


Configuration of bridge are hand-coded inside BrandMeisterBridge.cpp:

Please configure PatchCord to number 10 in BrandMeister.conf
Configuration of MySQL connection should be placed in /opt/BrandMeister/Registry.cnf