update copyright
This commit is contained in:
parent
bb4e24ab86
commit
4b90dc7a8c
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# 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
|
# 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
|
# Python modules we need
|
||||||
import sys
|
import sys
|
||||||
from bitarray import bitarray
|
from bitarray import bitarray
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
20
mk_voice.py
Normal file → Executable file
20
mk_voice.py
Normal file → Executable file
@ -1,3 +1,23 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
#
|
||||||
|
###############################################################################
|
||||||
|
# Copyright (C) 2016-2019 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
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
from bitarray import bitarray
|
from bitarray import bitarray
|
||||||
from dmr_utils3 import bptc, golay, qr
|
from dmr_utils3 import bptc, golay, qr
|
||||||
from dmr_utils3.utils import bytes_3, bytes_4
|
from dmr_utils3.utils import bytes_3, bytes_4
|
||||||
|
14
play_ambe.py
14
play_ambe.py
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (C) 2016-2018 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
# Copyright (C) 2016-2019 Cortney T. Buffington, N0MJS <n0mjs@me.com>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# 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
|
# 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
|
# Python modules we need
|
||||||
import sys
|
import sys
|
||||||
from bitarray import bitarray
|
from bitarray import bitarray
|
||||||
|
Loading…
Reference in New Issue
Block a user