//User must modify the below package with their package name package com.UARTTest; import java.io.FileDescriptor; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import android.app.Activity; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; import android.hardware.usb.UsbAccessory; import android.hardware.usb.UsbManager; import android.os.ParcelFileDescriptor; import android.util.Log; import android.widget.Toast; /******************************FT311 GPIO interface class******************************************/ public class FT311UARTInterface extends Activity { private static final String ACTION_USB_PERMISSION = "com.UARTTest.USB_PERMISSION"; public UsbManager usbmanager; public UsbAccessory usbaccessory; public PendingIntent mPermissionIntent; public ParcelFileDescriptor filedescriptor = null; public FileInputStream inputstream = null; public FileOutputStream outputstream = null; public boolean mPermissionRequestPending = false; public read_thread readThread; private byte [] usbdata; private byte [] writeusbdata; private byte [] readBuffer; /*circular buffer*/ private int readcount; private int totalBytes; private int writeIndex; private int readIndex; private byte status; final int maxnumbytes = 65536; public boolean datareceived = false; public boolean READ_ENABLE = false; public boolean accessory_attached = false; public Context global_context; public static String ManufacturerString = "mManufacturer=FTDI"; public static String ModelString1 = "mModel=FTDIUARTDemo"; public static String ModelString2 = "mModel=Android Accessory FT312D"; public static String VersionString = "mVersion=1.0"; public SharedPreferences intsharePrefSettings; /*constructor*/ public FT311UARTInterface(Context context, SharedPreferences sharePrefSettings){ super(); global_context = context; intsharePrefSettings = sharePrefSettings; /*shall we start a thread here or what*/ usbdata = new byte[1024]; writeusbdata = new byte[256]; /*128(make it 256, but looks like bytes should be enough)*/ readBuffer = new byte [maxnumbytes]; readIndex = 0; writeIndex = 0; /***********************USB handling******************************************/ usbmanager = (UsbManager) context.getSystemService(Context.USB_SERVICE); // Log.d("LED", "usbmanager" +usbmanager); mPermissionIntent = PendingIntent.getBroadcast(context, 0, new Intent(ACTION_USB_PERMISSION), 0); IntentFilter filter = new IntentFilter(ACTION_USB_PERMISSION); filter.addAction(UsbManager.ACTION_USB_ACCESSORY_DETACHED); context.registerReceiver(mUsbReceiver, filter); inputstream = null; outputstream = null; } public void SetConfig(int baud, byte dataBits, byte stopBits, byte parity, byte flowControl) { /*prepare the baud rate buffer*/ writeusbdata[0] = (byte)baud; writeusbdata[1] = (byte)(baud >> 8); writeusbdata[2] = (byte)(baud >> 16); writeusbdata[3] = (byte)(baud >> 24); /*data bits*/ writeusbdata[4] = dataBits; /*stop bits*/ writeusbdata[5] = stopBits; /*parity*/ writeusbdata[6] = parity; /*flow control*/ writeusbdata[7] = flowControl; /*send the UART configuration packet*/ SendPacket((int)8); } /*write data*/ public byte SendData(int numBytes, byte[] buffer) { status = 0x00; /*success by default*/ /* * if num bytes are more than maximum limit */ if(numBytes < 1){ /*return the status with the error in the command*/ return status; } /*check for maximum limit*/ if(numBytes > 256){ numBytes = 256; } /*prepare the packet to be sent*/ for(int count = 0;count totalBytes) numBytes = totalBytes; /*update the number of bytes available*/ totalBytes -= numBytes; actualNumBytes[0] = numBytes; /*copy to the user buffer*/ for(int count = 0; count>@@","ResumeAccessory RETURN 2 (accessories == null)"); accessory_attached = false; return 2; } UsbAccessory accessory = (accessories == null ? null : accessories[0]); if (accessory != null) { if( -1 == accessory.toString().indexOf(ManufacturerString)) { Toast.makeText(global_context, "Manufacturer is not matched!", Toast.LENGTH_SHORT).show(); return 1; } if( -1 == accessory.toString().indexOf(ModelString1) && -1 == accessory.toString().indexOf(ModelString2)) { Toast.makeText(global_context, "Model is not matched!", Toast.LENGTH_SHORT).show(); return 1; } if( -1 == accessory.toString().indexOf(VersionString)) { Toast.makeText(global_context, "Version is not matched!", Toast.LENGTH_SHORT).show(); return 1; } Toast.makeText(global_context, "Manufacturer, Model & Version are matched!", Toast.LENGTH_SHORT).show(); accessory_attached = true; if (usbmanager.hasPermission(accessory)) { OpenAccessory(accessory); } else { synchronized (mUsbReceiver) { if (!mPermissionRequestPending) { Toast.makeText(global_context, "Request USB Permission", Toast.LENGTH_SHORT).show(); usbmanager.requestPermission(accessory, mPermissionIntent); mPermissionRequestPending = true; } } } } else {} return 0; } /*destroy accessory*/ public void DestroyAccessory(boolean bConfiged){ if(true == bConfiged){ READ_ENABLE = false; // set false condition for handler_thread to exit waiting data loop writeusbdata[0] = 0; // send dummy data for instream.read going SendPacket(1); } else { SetConfig(9600,(byte)1,(byte)8,(byte)0,(byte)0); // send default setting data for config try{Thread.sleep(10);} catch(Exception e){} READ_ENABLE = false; // set false condition for handler_thread to exit waiting data loop writeusbdata[0] = 0; // send dummy data for instream.read going SendPacket(1); if(true == accessory_attached) { saveDefaultPreference(); } } try{Thread.sleep(10);} catch(Exception e){} CloseAccessory(); } /*********************helper routines*************************************************/ public void OpenAccessory(UsbAccessory accessory) { filedescriptor = usbmanager.openAccessory(accessory); if(filedescriptor != null){ usbaccessory = accessory; FileDescriptor fd = filedescriptor.getFileDescriptor(); inputstream = new FileInputStream(fd); outputstream = new FileOutputStream(fd); /*check if any of them are null*/ if(inputstream == null || outputstream==null){ return; } if(READ_ENABLE == false){ READ_ENABLE = true; readThread = new read_thread(inputstream); readThread.start(); } } } private void CloseAccessory() { try{ if(filedescriptor != null) filedescriptor.close(); }catch (IOException e){} try { if(inputstream != null) inputstream.close(); } catch(IOException e){} try { if(outputstream != null) outputstream.close(); }catch(IOException e){} /*FIXME, add the notfication also to close the application*/ filedescriptor = null; inputstream = null; outputstream = null; System.exit(0); } protected void saveDetachPreference() { if(intsharePrefSettings != null) { intsharePrefSettings.edit() .putString("configed", "FALSE") .commit(); } } protected void saveDefaultPreference() { if(intsharePrefSettings != null) { intsharePrefSettings.edit().putString("configed", "TRUE").commit(); intsharePrefSettings.edit().putInt("baudRate", 9600).commit(); intsharePrefSettings.edit().putInt("stopBit", 1).commit(); intsharePrefSettings.edit().putInt("dataBit", 8).commit(); intsharePrefSettings.edit().putInt("parity", 0).commit(); intsharePrefSettings.edit().putInt("flowControl", 0).commit(); } } /***********USB broadcast receiver*******************************************/ private final BroadcastReceiver mUsbReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (ACTION_USB_PERMISSION.equals(action)) { synchronized (this) { UsbAccessory accessory = (UsbAccessory) intent.getParcelableExtra(UsbManager.EXTRA_ACCESSORY); if (intent.getBooleanExtra(UsbManager.EXTRA_PERMISSION_GRANTED, false)) { Toast.makeText(global_context, "Allow USB Permission", Toast.LENGTH_SHORT).show(); OpenAccessory(accessory); } else { Toast.makeText(global_context, "Deny USB Permission", Toast.LENGTH_SHORT).show(); Log.d("LED", "permission denied for accessory "+ accessory); } mPermissionRequestPending = false; } } else if (UsbManager.ACTION_USB_ACCESSORY_DETACHED.equals(action)) { saveDetachPreference(); DestroyAccessory(true); //CloseAccessory(); }else { Log.d("LED", "...."); } } }; /*usb input data handler*/ private class read_thread extends Thread { FileInputStream instream; read_thread(FileInputStream stream ){ instream = stream; this.setPriority(Thread.MAX_PRIORITY); } public void run() { while(READ_ENABLE == true) { while(totalBytes > (maxnumbytes - 1024)) { try { Thread.sleep(50); } catch (InterruptedException e) {e.printStackTrace();} } try { if(instream != null) { readcount = instream.read(usbdata,0,1024); if(readcount > 0) { for(int count = 0;count= readIndex) totalBytes = writeIndex-readIndex; else totalBytes = (maxnumbytes-readIndex)+writeIndex; // Log.e(">>@@","totalBytes:"+totalBytes); } } } catch (IOException e){e.printStackTrace();} } } } }