mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // ------------------------------------------------------------------------------
 | |
| // Perseus SDR Library Interface
 | |
| // 
 | |
| // Copyright (c) 2010 Nicolangelo Palermo / IV3NWV 
 | |
| // This file is part of the Perseus SDR Library
 | |
| //
 | |
| // The Perseus SDR Library is free software; you can redistribute 
 | |
| // it and/or modify it under the terms of the GNU Lesser General Public 
 | |
| // License as published by the Free Software Foundation; either version 
 | |
| // 2.1 of the License, or (at your option) any later version.
 | |
| 
 | |
| // The Perseus SDR Library 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 Lesser General Public License for more details.
 | |
| 
 | |
| // You should have received a copy of the GNU Lesser General Public
 | |
| // License along with the Perseus SDR Library; 
 | |
| // if not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
| // Creation date:	25 June 2010
 | |
| // Author: 			Andrea Montefusco (IW0HDV)
 | |
| //					(andrew at montefusco dot com)
 | |
| // ------------------------------------------------------------------------------
 | |
| 
 | |
| 
 | |
| #if !defined __FPGA_DATA_H__
 | |
| #define      __FPGA_DATA_H__
 | |
| 
 | |
| 
 | |
| typedef struct _fpga_images {
 | |
|    const char         *name;
 | |
|    const int           speed;
 | |
|    const int           size;
 | |
|    const unsigned char *code;
 | |
|    const int           osize;
 | |
| } FpgaImages;
 | |
| 
 | |
| extern FpgaImages fpgaImgTbl [];
 | |
| extern int nFpgaImages;
 | |
| 
 | |
| #endif
 |