4
Fork 0
AutoPatch/SVXLink
Artem Prilutskiy 68c0249865 Fixed README
2017-12-23 09:32:39 +03:00
..
echolink Updated EchoLink module patch 2017-12-23 09:02:26 +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 Moved from MySQL to new set of D-BUS methods to retreive station call / ID 2017-06-13 11:36:22 +03:00
README.md Fixed README 2017-12-23 09:32:39 +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

Put PatchCord.* 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}) set(MODSRC ${MODSRC} PatchCord.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