Commit Graph

524 Commits

Author SHA1 Message Date
Cort Buffington
3e8177f80b Cleanup 2014-04-24 08:18:57 -05:00
Cort Buffington
dc07204f03 NOT YET WORKING
Playback transmissions by repeating a packet stream… not yet working.
2014-04-20 21:37:59 -05:00
Cort Buffington
31ecf3b733 People Can't Convert DEC to HEX
Added a simple function to convert decimal values into the necessary
TGID hexadecimal strings. Seems like everyone contacting me with
trouble using bridge.py has trouble doing this.
2014-04-10 22:15:44 -05:00
Cort Buffington
dbe69bb15e keep-alive packet logging set for debug level 2014-01-21 10:49:13 -06:00
Cort Buffington
620d013e92 Added debug logging for keep-alives 2014-01-21 10:40:52 -06:00
Cort Buffington
f25f97a045 Update README.md 2014-01-03 15:22:17 -06:00
Cort Buffington
6197240725 Update README.md 2014-01-03 15:21:39 -06:00
Cort Buffington
98300901cc cfg file note added 2014-01-03 15:03:41 -06:00
Cort Buffington
874b11db7b Daemon Support
Shebangs added to all files expected to be executed, command line
argument for configuration file added (otherwise, it looks for
dmrlink.cfg in the same directory as dmrlink.py) - this divorces it
from the last ties to a shell environment… or at least I think.
2014-01-03 15:01:43 -06:00
Cort Buffington
cd217b94b5 Bug fix -- extra information in the cfg file not necessary! 2014-01-02 19:01:28 -06:00
Cort Buffington
ebe64c665d Official Version V0.1 Release 2014-01-02 11:18:03 -06:00
Cort Buffington
97246370c5 Official Version V0.1 Release 2014-01-02 11:16:23 -06:00
n0mjs710
2375162f30 Update requirements 2013-12-25 21:29:15 -06:00
Cort Buffington
c739e03dec cleanup 2013-12-22 16:26:17 -06:00
Cort Buffington
2973b66142 Cleanup 2013-12-22 16:23:42 -06:00
Cort Buffington
6b4fa3b479 Configuraiton Clean-up 2013-12-22 16:16:10 -06:00
Cort Buffington
7d09fd82ec Added Timeslot Parameters 2013-12-15 13:17:14 -06:00
Cort Buffington
3bc2a1fe98 Took out call-backs that do nothing 2013-12-15 10:37:01 -06:00
Cort Buffington
2be203cb8d LOTS ADDED!!!
Reporting output and logging configurations are now included here,
along with more/better inline documentation on how to set up this file.
2013-12-15 10:05:34 -06:00
Cort Buffington
b461bc9240 Imported Logger - more config items 2013-12-15 09:45:39 -06:00
Cort Buffington
dae134cb5c NOW inc. in dmrlink.py 2013-12-15 09:45:18 -06:00
Cort Buffington
53d7472fa6 See Detailed Description
Made some changes to better stabilize where dmrlink.py looks for the
csv files… not perfect, but better. Expect more changes.

Have waffled back and forth on how to handle peers we lose contact
with… de-reg for sure, but ignore them, or try forever (until we get a
peer list without them from the master) to re-register with the peer?
Settled on trying forever, but will add code to request a new peer-list
every few hours.
2013-12-13 12:07:18 -06:00
Cort Buffington
5e1c42aeb3 Updated .gitignore 2013-12-12 20:04:18 -06:00
Cort Buffington
878fec4a3e Begin Adding Features to Bridging 2013-12-12 19:59:04 -06:00
Cort Buffington
bf46299a2a re-add accidental deletion. 2013-12-12 18:20:21 -06:00
Cort Buffington
872053d6a5 Continue peer connection improvements 2013-12-12 17:03:00 -06:00
Cort Buffington
f3e2d53d9f Revert to Previous Peer De-registration Behavior
The quandry is what to do with peers that have disappeared for too
long. If we keep trying to re-register, we could be quite busy doing
that for an eternity… but if we de-reg the peer and it comes back in 10
minutes, but, say, never lost the master, we don’t get a peer list for
a LONG time and we don’t get it back then either…. There’s no good
answer right now. Anyone got one?
2013-12-12 16:59:56 -06:00
Cort Buffington
98b12aedd3 Import Simplification
Several imports only imported one function, so I changed them to “from
xxx import yyy”
2013-12-12 16:23:46 -06:00
Cort Buffington
101c627d3f Better Processing of MODE and FLAGS 2013-12-12 16:12:36 -06:00
Cort Buffington
d9cf7c3b8a More MODE and FLAGS additions 2013-12-12 07:50:47 -06:00
Cort Buffington
87260cc56e Peer Flag & Mode Additions 2013-12-12 07:42:56 -06:00
Cort Buffington
bbf5ce5282 See Previous Commit 2013-12-11 20:56:39 -06:00
Cort Buffington
8971bb8aed Added MODE decoding function
Turns out we have to do this in TWO places, when processing the peer
list (or could be peer reg. replies, but I only do it once) AND the
master registration reply. So rather than duplicate the code, I moved
it to a function.
2013-12-11 20:53:55 -06:00
Cort Buffington
0701e75026 Changed Masks Slightly for Improved Processing Routines 2013-12-11 20:52:39 -06:00
Cort Buffington
8aec3d5078 Fixed the last fix :) 2013-12-11 19:25:19 -06:00
Cort Buffington
d6b948e0d1 Master Mode info (info only) wasn't gathered properly. 2013-12-11 19:10:08 -06:00
Cort Buffington
810e0c8c22 fixed Master information gathering 2013-12-11 19:09:38 -06:00
Cort Buffington
44b3e37142 No real change 2013-12-11 14:50:03 -06:00
Cort Buffington
5b35993159 Change In Peer Processing
Since peers are no-longer de-registered just by missing too many
keep-alives (instead returned to registration phase), there must be a
way to remove a peer that we have in our list(s) that are NOT in new
peer lists from the master. This was added.
2013-12-09 16:48:44 -06:00
Cort Buffington
af7941a484 Code Maturity Clean-Up
moved many of the inline print statements to logger.debug. The code is
solid enough they’re no longer needed.

Also made a couple of minor logic changes:
When a peer misses too-many keep-alives, it doesn’t de-register, it
just goes back to registration attempt until a new peer list is
recieved, or a de-registration is recieved. Also, outstanding
keep-alives are set to 0 when a peer or master exceed max-keep-alives
and return to registration pending.
2013-12-09 16:14:03 -06:00
Cort Buffington
9723822e71 Update README.md 2013-12-07 17:06:15 -06:00
Cort Buffington
e3e18f7c84 Update README.md 2013-12-07 17:04:25 -06:00
Cort Buffington
a852f8f70d Update README.md 2013-12-07 17:02:18 -06:00
Cort Buffington
a0fa08a41f Update README.md 2013-12-07 16:58:44 -06:00
Cort Buffington
922308bcb3 typo 2013-12-06 07:11:19 -06:00
Cort Buffington
cea2cee20e Minor Clean-Up 2013-12-06 07:00:40 -06:00
Cort Buffington
0291bbbd9d minor formatting updates 2013-12-06 06:52:43 -06:00
Cort Buffington
d356459ad2 minor logging changes... preferences really 2013-12-05 18:46:54 -06:00
Cort Buffington
c3f53b5eb7 Fixed Keep-Alive While Transmitting Issue
repeaters don’t reply to keep alives while they are transmitting.
Changed addes so that when voice packets are received, the keep-alive
monitor is reset for that peer.
2013-12-05 15:20:59 -06:00
Cort Buffington
2a895d0787 General Clean-Up 2013-12-03 10:48:41 -06:00