kopia lustrzana https://github.com/projecthorus/radiosonde_auto_rx
				
				
				
			
		
			
				
	
	
		
			35 wiersze
		
	
	
		
			883 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			35 wiersze
		
	
	
		
			883 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/bin/bash
 | |
| #
 | |
| # Auto Sonde Decoder build script.
 | |
| #
 | |
| 
 | |
| # Build rs_detect.
 | |
| echo "Building rs_detect"
 | |
| cd ../scan/
 | |
| gcc dft_detect.c -lm -o dft_detect -DNOC34C50
 | |
| 
 | |
| echo "Building RS92/RS41/DFM Demodulators"
 | |
| cd ../demod/
 | |
| gcc -c demod.c
 | |
| gcc -c demod_dft.c
 | |
| gcc rs92dm_dft.c demod_dft.o -lm -o rs92ecc -I../ecc/ -I../rs92
 | |
| gcc rs41dm_dft.c demod_dft.o -lm -o rs41ecc -I../ecc/ -I../rs41 -w
 | |
| gcc dfm09dm_dft.c demod_dft.o -lm -o dfm09ecc -I../ecc/ -I../dfm
 | |
| # Build M10 decoder
 | |
| echo "Building M10 Demodulator."
 | |
| cd ../m10/
 | |
| g++ M10.cpp M10Decoder.cpp M10GeneralParser.cpp M10GtopParser.cpp M10TrimbleParser.cpp AudioFile.cpp -lm -o m10 -std=c++11
 | |
| 
 | |
| 
 | |
| # Copy all necessary files into this directory.
 | |
| echo "Copying files into auto_rx directory."
 | |
| cd ../auto_rx/
 | |
| cp ../scan/rs_detect .
 | |
| cp ../scan/dft_detect .
 | |
| cp ../demod/rs92ecc .
 | |
| cp ../demod/rs41ecc .
 | |
| cp ../demod/dfm09ecc .
 | |
| cp ../m10/m10 .
 | |
| 
 | |
| echo "Done!"
 |