diff --git a/app_template.py b/app_template.py index 6717ed5..9308ac6 100755 --- a/app_template.py +++ b/app_template.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ############################################################################### -# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS +# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS # # 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 @@ -18,18 +18,6 @@ # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ############################################################################### -''' -This application, in conjuction with it's rule file (rules.py) will -work like a "conference bridge". This is similar to what most hams think of as a -reflector. You define conference bridges and any system joined to that conference -bridge will both receive traffic from, and send traffic to any other system -joined to the same conference bridge. It does not provide end-to-end connectivity -as each end system must individually be joined to a conference bridge (a name -you create in the configuraiton file) to pass traffic. - -This program currently only works with group voice calls. -''' - # Python modules we need import sys from bitarray import bitarray diff --git a/bridge.py b/bridge.py index e96d085..e3e1b03 100755 --- a/bridge.py +++ b/bridge.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ############################################################################### -# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS +# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS # # 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 diff --git a/hblink.py b/hblink.py index 8b6f4db..55366a6 100755 --- a/hblink.py +++ b/hblink.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ############################################################################### -# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS +# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS # # 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 diff --git a/mk_voice.py b/mk_voice.py old mode 100644 new mode 100755 index 09557d3..beea05d --- a/mk_voice.py +++ b/mk_voice.py @@ -1,3 +1,23 @@ +#!/usr/bin/env python +# +############################################################################### +# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS +# +# 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 +############################################################################### + from bitarray import bitarray from dmr_utils3 import bptc, golay, qr from dmr_utils3.utils import bytes_3, bytes_4 diff --git a/play_ambe.py b/play_ambe.py index 8e77cdc..fb7716e 100755 --- a/play_ambe.py +++ b/play_ambe.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ############################################################################### -# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS +# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS # # 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 @@ -18,18 +18,6 @@ # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ############################################################################### -''' -This application, in conjuction with it's rule file (rules.py) will -work like a "conference bridge". This is similar to what most hams think of as a -reflector. You define conference bridges and any system joined to that conference -bridge will both receive traffic from, and send traffic to any other system -joined to the same conference bridge. It does not provide end-to-end connectivity -as each end system must individually be joined to a conference bridge (a name -you create in the configuraiton file) to pass traffic. - -This program currently only works with group voice calls. -''' - # Python modules we need import sys from bitarray import bitarray