kopia lustrzana https://github.com/Hamlib/Hamlib
				
				
				
			
		
			
	
	
		
			114 wiersze
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
		
		
			
		
	
	
			114 wiersze
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
|   | /*
 | ||
|  |  *  Hamlib Flex 6K series support using supported Kenwood commands | ||
|  |  *  Copyright (C) 2010,2011 by Nate Bargmann, n0nb@n0nb.us | ||
|  |  *  Copyright (C) 2011 by Alexander Sack, Alexander Sack, pisymbol@gmail.com | ||
|  |  *  Copyright (C) 2013 by Steve Conklin AI4QR, steve@conklinhouse.com | ||
|  |  * | ||
|  |  * | ||
|  |  *   This 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. | ||
|  |  * | ||
|  |  *   This 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 this library; if not, write to the Free Software | ||
|  |  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA | ||
|  |  * | ||
|  |  *  See the file 'COPYING.LIB' in the main Hamlib distribution directory for | ||
|  |  *  the complete text of the GNU Lesser Public License version 2.1. | ||
|  |  * | ||
|  |  */ | ||
|  | 
 | ||
|  | #include <string.h>
 | ||
|  | #include <stdlib.h>
 | ||
|  | 
 | ||
|  | #include "flex.h"
 | ||
|  | #include "kenwood.h"
 | ||
|  | 
 | ||
|  | /* Private helper functions */ | ||
|  | 
 | ||
|  | int verify_flexradio_id(RIG *rig, char *id) | ||
|  | { | ||
|  | 	rig_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__); | ||
|  | 
 | ||
|  | 	if (!rig || !id) | ||
|  | 		return -RIG_EINVAL; | ||
|  | 
 | ||
|  | 	int err; | ||
|  | 	char *idptr; | ||
|  | 
 | ||
|  | 	/* Check for a Flex 6700 which returns "904" */ | ||
|  | 	err = kenwood_get_id(rig, id); | ||
|  | 	if (err != RIG_OK) { | ||
|  | 		rig_debug(RIG_DEBUG_VERBOSE, "%s: cannot get identification\n", __func__); | ||
|  | 		return err; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	/* ID is 'ID904;' */ | ||
|  | 	if (strlen(id) < 5) { | ||
|  | 		rig_debug(RIG_DEBUG_VERBOSE, "%s: unknown ID type (%s)\n", __func__, id); | ||
|  | 		return -RIG_EPROTO; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	/* check for any white space and skip it */ | ||
|  | 	idptr = &id[2]; | ||
|  | 	if (*idptr == ' ') | ||
|  | 		idptr++; | ||
|  | 
 | ||
|  | 	if (strcmp("904", idptr) == 0) | ||
|  | 		rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6700)\n", __func__, id); | ||
|  | 	else if (strcmp("905", idptr) == 0) | ||
|  | 		rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6500)\n", __func__, id); | ||
|  | 	else if (strcmp("906", idptr) == 0) | ||
|  | 		rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig ID is %s (Flex 6500R)\n", __func__, id); | ||
|  | 	else { | ||
|  | 		rig_debug(RIG_DEBUG_VERBOSE, "%s: Rig (%s) is not a Flex 6000 Series\n", __func__, id); | ||
|  | 		return -RIG_EPROTO; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	return RIG_OK; | ||
|  | } | ||
|  | 
 | ||
|  | /* Shared backend function definitions */ | ||
|  | 
 | ||
|  | /* flexradio_open()
 | ||
|  |  * | ||
|  |  */ | ||
|  | 
 | ||
|  | int flexradio_open(RIG *rig) | ||
|  | { | ||
|  | 	rig_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__); | ||
|  | 
 | ||
|  | 	if (!rig) | ||
|  | 		return -RIG_EINVAL; | ||
|  | 
 | ||
|  | 	int err; | ||
|  | 	char id[FLEXRADIO_MAX_BUF_LEN]; | ||
|  | 
 | ||
|  | 	//struct flexradio_priv_data *priv = rig->state.priv;
 | ||
|  | 
 | ||
|  | 	/* Use check for "ID017;" to verify rig is reachable */ | ||
|  | 	err = verify_flexradio_id(rig, id); | ||
|  | 	if (err != RIG_OK) | ||
|  | 		return err; | ||
|  | 	switch(rig->caps->rig_model) { | ||
|  | 	case RIG_MODEL_F6K: | ||
|  | 		break; | ||
|  | 	default: | ||
|  | 		rig_debug(RIG_DEBUG_WARN, "%s: unrecognized rig model %d\n", | ||
|  | 			__func__, rig->caps->rig_model); | ||
|  | 		return -RIG_EINVAL; | ||
|  | 	} | ||
|  | 
 | ||
|  | 	return RIG_OK; | ||
|  | } | ||
|  | 
 | ||
|  | 	//stopped
 | ||
|  | 
 | ||
|  | 
 |