diff options
| author | root <root@usrp-embedded.(none)> | 2010-09-30 18:25:24 +0000 | 
|---|---|---|
| committer | Philip Balister <philip@opensdr.com> | 2010-09-30 20:59:26 -0400 | 
| commit | c0e03bb2edea4645f46f25afcc9be8b7b03f68df (patch) | |
| tree | 21d00a50222ce8a28a3bd463dd6a05e6388ac875 | |
| parent | 46d2fc423d2fdcf32454621c6f41e555d2496702 (diff) | |
| download | uhd-c0e03bb2edea4645f46f25afcc9be8b7b03f68df.tar.gz uhd-c0e03bb2edea4645f46f25afcc9be8b7b03f68df.tar.bz2 uhd-c0e03bb2edea4645f46f25afcc9be8b7b03f68df.zip | |
Ignore direction for GPIO 114 since it is always an input.
| -rw-r--r-- | host/apps/omap_debug/fpga-downloader.cc | 20 | 
1 files changed, 11 insertions, 9 deletions
| diff --git a/host/apps/omap_debug/fpga-downloader.cc b/host/apps/omap_debug/fpga-downloader.cc index fb96b64a3..4e475b5c1 100644 --- a/host/apps/omap_debug/fpga-downloader.cc +++ b/host/apps/omap_debug/fpga-downloader.cc @@ -97,15 +97,17 @@ gpio::gpio(unsigned int gpio_num, gpio_direction pin_direction)  	std::fstream direction_file;  	std::string direction_file_name; -	direction_file_name = base_path.str() + "/direction"; - -	direction_file.open(direction_file_name.c_str());  -	if (!direction_file.is_open()) -		std::cout << "Failed to open direction file." << std::endl; -	if (pin_direction == OUT) -		direction_file << "out" << std::endl; -	else -		direction_file << "in" << std::endl; +	if (gpio_num != 114) { +		direction_file_name = base_path.str() + "/direction"; + +		direction_file.open(direction_file_name.c_str());  +		if (!direction_file.is_open()) +			std::cout << "Failed to open direction file." << std::endl; +		if (pin_direction == OUT) +			direction_file << "out" << std::endl; +		else +			direction_file << "in" << std::endl; +	}  	std::string value_file_name; | 
