18 lines
		
	
	
		
			422 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			422 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from owrx.command import Flag
 | |
| from .soapy import SoapyConnectorSource
 | |
| 
 | |
| 
 | |
| class AirspySource(SoapyConnectorSource):
 | |
|     def getSoapySettingsMappings(self):
 | |
|         mappings = super().getSoapySettingsMappings()
 | |
|         mappings.update(
 | |
|             {
 | |
|                 "bias_tee": "biastee",
 | |
|                 "bitpack": "bitpack",
 | |
|             }
 | |
|         )
 | |
|         return mappings
 | |
| 
 | |
|     def getDriver(self):
 | |
|         return "airspy"
 | 
