mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-10-31 04:50:34 -04:00 
			
		
		
		
	
		
			
	
	
		
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
|  | // qra13_64_64_irr_e.h
 | ||
|  | // Code tables and defines for Q-ary RA code (13,64) over GF(64)
 | ||
|  | // Code Name: qra13_64_64_irr_e
 | ||
|  | // (13,64) RA Code over GF(64) RF=[3x4 4x4 6x1 3x2 5x1 7x1]/18
 | ||
|  | 
 | ||
|  | // (c) 2016 - Nico Palermo - IV3NWV - Microtelecom Srl, Italy
 | ||
|  | 
 | ||
|  | // This file is part of the qracodes project, a Forward Error Control
 | ||
|  | // encoding/decoding package based on Q-ary RA (Repeat and Accumulate) LDPC codes.
 | ||
|  | //
 | ||
|  | //    qracodes 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.
 | ||
|  | //    qracodes 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 qracodes source distribution.
 | ||
|  | //    If not, see <http://www.gnu.org/licenses/>.
 | ||
|  | 
 | ||
|  | #ifndef _qra13_64_64_irr_e_h
 | ||
|  | #define _qra13_64_64_irr_e_h
 | ||
|  | 
 | ||
|  | #include "qracodes.h"
 | ||
|  | 
 | ||
|  | #ifdef __cplusplus
 | ||
|  | extern "C" { | ||
|  | #endif
 | ||
|  | 
 | ||
|  | extern const qracode qra_13_64_64_irr_e; | ||
|  | 
 | ||
|  | #ifdef __cplusplus
 | ||
|  | } | ||
|  | #endif
 | ||
|  | 
 | ||
|  | #endif // _qra13_64_64_irr_e_h
 |