Go to file
Cort Buffington 050aad7cb3 HIGH PROFILE FIXES - Addresses Brandmeister disconnects.
Random:
  * Commented out per-packet debug logger lines (uncomment locally when needed)

Problems Fixed:

CLIENT MODE: hblink.py

hblink.py did not properly parse the radio_id in a MSTNAK message. We searched for
"MSTN" - 4 characters, and neglected to parse the radio ID at offset 6, after "MSTNAK"
instead of after 4, "MSTN".... rookie mistake:

  elif _command == 'MSTN':    # Actually MSTNAK -- a NACK from the master
  -                _radio_id = _data[4:8]
  +                _radio_id = _data[6:10]

hblink.py did not actually keep track of missed keep-alives correctly to reset a connection.
This has probably been fixed. At worst, no more broken than it was. Would like to have
some folks test it by breaking connectivty froma client to master and watch what happens.

Appears to work now.
2018-02-02 14:14:30 -06:00
.gitignore NEW CONFERENCE BRIDGE APP!!! 2016-11-26 12:10:03 -06:00
LICENSE.txt License Change 2016-11-21 19:13:32 -06:00
README.md ONLINE SUPPORT FORUM 2017-05-24 09:50:10 -05:00
hb_bridge_all.py HIGH PROFILE FIXES - Addresses Brandmeister disconnects. 2018-02-02 14:14:30 -06:00
hb_confbridge.py update ACL format and action to add "ranges" 2017-06-29 13:02:40 -05:00
hb_confbridge_rules-SAMPLE.py Further Modularization 2016-11-26 14:36:24 -06:00
hb_config.py HIGH PROFILE FIXES - Addresses Brandmeister disconnects. 2018-02-02 14:14:30 -06:00
hb_const.py Descriptions added (below copyright and license area) 2016-12-19 08:36:17 -06:00
hb_log.py Descriptions added (below copyright and license area) 2016-12-19 08:36:17 -06:00
hb_parrot.py Change app log sign on 2017-04-13 11:41:14 -04:00
hb_router.py update ACL format and action to add "ranges" 2017-06-29 13:02:40 -05:00
hb_routing_rules-SAMPLE.py Further Modularization 2016-11-26 14:36:24 -06:00
hblink-SAMPLE.cfg Fix typo 2017-11-09 06:17:36 -05:00
hblink.py HIGH PROFILE FIXES - Addresses Brandmeister disconnects. 2018-02-02 14:14:30 -06:00
peer_ids.csv update ACL format and action to add "ranges" 2017-06-29 13:02:40 -05:00
requirements.txt update 2016-12-19 07:55:17 -06:00
sub_acl.py update ACL format and action to add "ranges" 2017-06-29 13:02:40 -05:00
subscriber_ids.csv update ACL format and action to add "ranges" 2017-06-29 13:02:40 -05:00
talkgroup_ids.csv Last update for today 2016-11-16 15:02:56 -06:00

README.md

Please join the DVSwitch group at groups.io for online forum support, discussion, and to become part of the development team. DVSwitch@groups.io
### FOR SUPPORT, DISCUSSION, GETTING INVOLVED ### Please join the DVSwitch group at groups.io for online forum support, discussion, and to become part of the development team. DVSwitch@groups.io

PROJECT: Open Source HomeBrew Repeater Proctol Client/Master.

UPDATES:

PURPOSE: Thanks to the work of Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT we have an open protocol for internetworking DMR repeaters. Unfortunately, there's no generic client and/or master stacks. This project is to build an open-source, python-based implementation. This is a non-commercial license. Atribution is required if you use it.

For those who will ask: This is a piece of software that implements an open-source, amateur radio networking protocol. It is not a network. It is not indended to be a network. It is not intended to replace or circumvent a network. People do those things, code doesn't.

PROPERTY:
This work represents the author's interpretation of the HomeBrew Repeater Protocol, based on the 2015-07-26 documents from DMRplus, "IPSC Protocol Specs for homebrew DMR repeater" as written by Jonathan Naylor, G4KLX; Hans Barthen, DL5DI; Torsten Shultze, DG1HT, also licenced under Creative Commons BY-NC-SA license.

WARRANTY None. The owners of this work make absolutley no warranty, express or implied. Use this software at your own risk.

PRE-REQUISITE KNOWLEDGE:
This document assumes the reader is familiar with the Python programming language and DMR.

MORE DOCUMENTATION TO COME

0x49 DE N0MJS

Copyright (C) 2016-2017 Cortney T. Buffington, N0MJS n0mjs@me.com

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA