This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
op25-legacy/repeater
max 2b7cc9762e add disc tap rx
git-svn-id: http://op25.osmocom.org/svn/trunk@235 65a5c917-d112-43f1-993d-58c26a4786be
2011-01-02 00:34:02 +00:00
..
config add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
src add disc tap rx 2011-01-02 00:34:02 +00:00
AUTHORS add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
COPYING add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
ChangeLog add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
INSTALL add INSTALL file 2010-12-25 03:45:46 +00:00
Makefile.am add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
Makefile.common add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
NEWS add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
README also added README file, also Reed/Solomon and Hamming/Golay stuff 2010-07-17 23:11:13 +00:00
bootstrap add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
config.guess add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
config.h.in add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
config.sub add p25 and ctcss repeater blocks 2010-05-07 14:13:24 +00:00
configure.ac add chan_usrp interface 2010-12-25 02:40:51 +00:00

README

(C) Copyright 2010, KA1RBI

This package contains implementations for a number of loosely related
GR blocks and related utilities including:
	- improved ctcss squelch block
	- general pipe block (gr seems to fight this)
	- p25 framer / assembler block
	- fsk4 slicer with settable decision points
	- Combined Gardner/Costas loop block 
	- RS and BCH routines

-------------------------------------------------------------------------

Two key internal interfaces are used throughout the system:

1. 88-bit IMBE voice codewords (input to Pavel's decoder and output by the 
encoder; also referred to as the u[] vectors) are represented as printable
"hex" strings of the format
     "%03x %03x %03x %03x %03x %03x %03x %03x\n"   (each string is 32 bytes)
When sent via UDP, the nine voice codewords (from the LDU1/2) result in a
packet payload size of 288 (9 * 32).

2. The "wireshark" packet interface: P25 frames are sent as packed bytes,
four symbols (8 bits) per byte, one UDP packet per P25 frame.  The P25
frame sync (FS) is aligned starting at data offset zero of each UDP packet,
occupying the first six bytes.  Example: total data length of voice packets
= 216 bytes (864 symbols * 0.25 bytes/symbol).   All decoded symbol dibits
(including status symbols) are included.  When unpacked into symbols (dibits)
this format is the 4800 baud stream that would be applied to a FM/PSK
modulator stage or would be as received out of a FSK4 decoder/slicer.