diff USBLib/Communication/IUsbDevice.cs @ 65:abe0d55a2201

Removed some redundant USB communication code
author Ivo Smits <Ivo@UCIS.nl>
date Tue, 15 Oct 2013 16:19:45 +0200
parents 053cc617af54
children 2d16447eff12
line wrap: on
line diff
--- a/USBLib/Communication/IUsbDevice.cs	Sun Oct 13 20:03:05 2013 +0200
+++ b/USBLib/Communication/IUsbDevice.cs	Tue Oct 15 16:19:45 2013 +0200
@@ -8,8 +8,6 @@
 		void ResetDevice();
 
 		IUsbDeviceRegistry Registry { get; }
-
-		//void Close();
 	}
 	public interface IUsbInterface : IDisposable {
 		Byte Configuration { get; }
@@ -17,7 +15,6 @@
 
 		//int ControlTransfer(byte requestType, byte request, short value, short index, Byte[] buffer, int offset, int length);
 		int GetDescriptor(byte descriptorType, byte index, short langId, Byte[] buffer, int offset, int length);
-		String GetString(short langId, byte stringIndex);
 
 		int BulkWrite(Byte endpoint, Byte[] buffer, int offset, int length);
 		int BulkRead(Byte endpoint, Byte[] buffer, int offset, int length);