mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-03 13:30:52 -05:00 
			
		
		
		
	This merge brings the WSPR feature development into the main line ready for release in a future v1.6 release. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5424 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
		
			
				
	
	
		
			42 lines
		
	
	
		
			927 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			927 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 This file is part of wsprd.
 | 
						|
 
 | 
						|
 File name: tab.c
 | 
						|
 Description: 8-bit parity lookup table.
 | 
						|
*/
 | 
						|
unsigned char Partab[] = {
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 0, 1, 1, 0, 1, 0, 0, 1,
 | 
						|
 1, 0, 0, 1, 0, 1, 1, 0,
 | 
						|
};
 | 
						|
 |