Androidシリアルポート操作、android-serialport-apiのdemo(付属ソースコード)を簡略化

17192 ワード

最近androidシリアルポートの開発をしていて、オープンソースのシリアルポートクラスandroid-serialport-apiを見つけました.ホームページはこちらhttp://code.google.com/p/android-serialport-api/ ,ここでAPKとソースコードに降りることができます.
    しかし、ソースコードをダウンロードした後、ソースコードは直接使用できず、ソースコードの構造が複雑であることが分かった.シリアルポートの操作については、いくつかのステップにすぎません.
   1.シリアルポートを開く(及びシリアルポートを配置する);
   2.リードシリアル;
   3.シリアルポートを書く.
   4.シリアルポートを閉じます.
Android-serialport-apiのコードは継承など複雑な行為を用いており、初心者にシリアルに関する上記の4つのステップをすぐに把握させることは容易ではないので、私は特に自分でdemoを書いたが、activityは1つしかなく、シリアルを開く、シリアルを書く、シリアルを読む操作が含まれており、シリアルを閉じるには、みんなが開くとどのように書くか分からない.
この文章は主に参考にするhttp://blog.csdn.net/tangcheng_ok/article/details/7021470
まだhttp://blog.csdn.net/jerome_home/article/details/8452305
次は本題に戻ります.
1つ目:
  Androidシリアルポートといえば、javaでc言語で書かれたライブラリを呼び出すことができるJNI技術を言わざるを得ません.androidでシリアルポートを使用できるように、android-serialport-apiの著者自身がc言語の動的リンクライブラリserial_を書いた.port.so(自動的にlibserial_port.soと名付けられた)はlibs/aemeabiに置かれており、そのcソースファイルはJNIにあり、android-serialport-apiのソースコードをダウンロードした後、この2つのフォルダcopyを自分で新しく作ったプロジェクトにダウンロードすればよい.
2番目:
その後、c言語を呼び出して書かれたダイナミックリンクライブラリのjavaクラスをsrcフォルダのandroid.serialportパッケージの下に入れます.ここでは必ずパッケージ名をこれに命名します.JNIについてよく知っている人が知っているので、c言語リンクライブラリを書くとき、関数の命名はそのクラスが存在するパッケージ名に関連しています.パッケージ名がリンクライブラリの関数の命名と一致しないと、リンクライブラリの関数を呼び出すことはできません.jniの.cファイル(ダイナミックリンクライブラリのソースファイル)を開くと、ソースコードが表示されます.
/*
 * Copyright 2009 Cedric Priscal
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include 
#include 
#include 
#include 
#include 
#include 
#include 

#include "android/log.h"
static const char *TAG="serial_port";
#define LOGI(fmt, args...) __android_log_print(ANDROID_LOG_INFO,  TAG, fmt, ##args)
#define LOGD(fmt, args...) __android_log_print(ANDROID_LOG_DEBUG, TAG, fmt, ##args)
#define LOGE(fmt, args...) __android_log_print(ANDROID_LOG_ERROR, TAG, fmt, ##args)

static speed_t getBaudrate(jint baudrate)
{
	switch(baudrate) {
	case 0: return B0;
	case 50: return B50;
	case 75: return B75;
	case 110: return B110;
	case 134: return B134;
	case 150: return B150;
	case 200: return B200;
	case 300: return B300;
	case 600: return B600;
	case 1200: return B1200;
	case 1800: return B1800;
	case 2400: return B2400;
	case 4800: return B4800;
	case 9600: return B9600;
	case 19200: return B19200;
	case 38400: return B38400;
	case 57600: return B57600;
	case 115200: return B115200;
	case 230400: return B230400;
	case 460800: return B460800;
	case 500000: return B500000;
	case 576000: return B576000;
	case 921600: return B921600;
	case 1000000: return B1000000;
	case 1152000: return B1152000;
	case 1500000: return B1500000;
	case 2000000: return B2000000;
	case 2500000: return B2500000;
	case 3000000: return B3000000;
	case 3500000: return B3500000;
	case 4000000: return B4000000;
	default: return -1;
	}
}

/*
 * Class:     cedric_serial_SerialPort
 * Method:    open
 * Signature: (Ljava/lang/String;)V
 */
JNIEXPORT jobject JNICALL Java_android_serialport_SerialPort_open
  (JNIEnv *env, jobject thiz, jstring path, jint baudrate)
{
	int fd;
	speed_t speed;
	jobject mFileDescriptor;

	/* Check arguments */
	{
		speed = getBaudrate(baudrate);
		if (speed == -1) {
			/* TODO: throw an exception */
			LOGE("Invalid baudrate");
			return NULL;
		}
	}

	/* Opening device */
	{
		jboolean iscopy;
		const char *path_utf = (*env)->GetStringUTFChars(env, path, &iscopy);
		LOGD("Opening serial port %s", path_utf);
		fd = open(path_utf, O_RDWR | O_DIRECT | O_SYNC);
		LOGD("open() fd = %d", fd);
		(*env)->ReleaseStringUTFChars(env, path, path_utf);
		if (fd == -1)
		{
			/* Throw an exception */
			LOGE("Cannot open port");
			/* TODO: throw an exception */
			return NULL;
		}
	}

	/* Configure device */
	{
		struct termios cfg;
		LOGD("Configuring serial port");
		if (tcgetattr(fd, &cfg))
		{
			LOGE("tcgetattr() failed");
			close(fd);
			/* TODO: throw an exception */
			return NULL;
		}

		cfmakeraw(&cfg);
		cfsetispeed(&cfg, speed);
		cfsetospeed(&cfg, speed);

		if (tcsetattr(fd, TCSANOW, &cfg))
		{
			LOGE("tcsetattr() failed");
			close(fd);
			/* TODO: throw an exception */
			return NULL;
		}
	}

	/* Create a corresponding file descriptor */
	{
		jclass cFileDescriptor = (*env)->FindClass(env, "java/io/FileDescriptor");
		jmethodID iFileDescriptor = (*env)->GetMethodID(env, cFileDescriptor, "", "()V");
		jfieldID descriptorID = (*env)->GetFieldID(env, cFileDescriptor, "descriptor", "I");
		mFileDescriptor = (*env)->NewObject(env, cFileDescriptor, iFileDescriptor);
		(*env)->SetIntField(env, mFileDescriptor, descriptorID, (jint)fd);
	}

	return mFileDescriptor;
}

/*
 * Class:     cedric_serial_SerialPort
 * Method:    close
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_android_serialport_SerialPort_close
  (JNIEnv *env, jobject thiz)
{
	jclass SerialPortClass = (*env)->GetObjectClass(env, thiz);
	jclass FileDescriptorClass = (*env)->FindClass(env, "java/io/FileDescriptor");

	jfieldID mFdID = (*env)->GetFieldID(env, SerialPortClass, "mFd", "Ljava/io/FileDescriptor;");
	jfieldID descriptorID = (*env)->GetFieldID(env, FileDescriptorClass, "descriptor", "I");

	jobject mFd = (*env)->GetObjectField(env, thiz, mFdID);
	jint descriptor = (*env)->GetIntField(env, mFd, descriptorID);

	LOGD("close(fd = %d)", descriptor);
	close(descriptor);
}

, 。


android.serialport , , SerialPort.java SerialPortFinder.java。

SerialPort.java, SO , JNI 。

/*
 * Copyright 2009 Cedric Priscal
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License. 
 */

package android.serialport;

import java.io.File;
import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import android.util.Log;

public class SerialPort {

	private static final String TAG = "SerialPort";

	/*
	 * Do not remove or rename the field mFd: it is used by native method close();
	 */
	private FileDescriptor mFd;
	private FileInputStream mFileInputStream;
	private FileOutputStream mFileOutputStream;

	public SerialPort(File device, int baudrate) throws SecurityException, IOException {

		/* Check access permission */
		if (!device.canRead() || !device.canWrite()) {
			try {
				/* Missing read/write permission, trying to chmod the file */
				Process su;
				su = Runtime.getRuntime().exec("/system/bin/su");
				String cmd = "chmod 777 " + device.getAbsolutePath() + "
" + "exit
"; /*String cmd = "chmod 777 /dev/s3c_serial0" + "
" + "exit
";*/ su.getOutputStream().write(cmd.getBytes()); if ((su.waitFor() != 0) || !device.canRead() || !device.canWrite()) { throw new SecurityException(); } } catch (Exception e) { e.printStackTrace(); throw new SecurityException(); } } mFd = open(device.getAbsolutePath(), baudrate); if (mFd == null) { Log.e(TAG, "native open returns null"); throw new IOException(); } mFileInputStream = new FileInputStream(mFd); mFileOutputStream = new FileOutputStream(mFd); } // Getters and setters public InputStream getInputStream() { return mFileInputStream; } public OutputStream getOutputStream() { return mFileOutputStream; } // JNI private native static FileDescriptor open(String path, int baudrate); public native void close(); static { System.loadLibrary("serial_port"); } }
System.loadLibrary("serial_port"); , 。 。


SerialPortFinder.java, , android , , demo。


: Activity

  android.serialport MyserialActivity.java, 。

package android.serialport;


import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;

import android.app.Activity;

import android.os.Bundle;



//import android.serialport.sample.R;
import android.serialport.R;

import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class MyserialActivity extends Activity {
    /** Called when the activity is first created. */
	
	
	 EditText mReception;
	 FileOutputStream mOutputStream;
	 FileInputStream mInputStream;
	 SerialPort sp;
	 
    @Override
   
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
  
    
    final Button buttonSetup = (Button)findViewById(R.id.ButtonSetup);
    buttonSetup.setOnClickListener(new View.OnClickListener() {
		public void onClick(View v) {
			mReception = (EditText) findViewById(R.id.EditTextRec);
			  
		      try {
			sp=new SerialPort(new File("/dev/ttyS2"),9600);
			} catch (SecurityException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}   
		      
		    
		      mOutputStream=(FileOutputStream) sp.getOutputStream();
		      mInputStream=(FileInputStream) sp.getInputStream();
			
		       Toast.makeText(getApplicationContext(), "open",
		    		    Toast.LENGTH_SHORT).show();
			
		}
	});
    
    
    
    final Button buttonsend= (Button)findViewById(R.id.ButtonSent1);
    buttonsend.setOnClickListener(new View.OnClickListener() {
		public void onClick(View v) {
			
			try {
				mOutputStream.write(new String("send").getBytes());
				mOutputStream.write('
'); } catch (IOException e) { e.printStackTrace(); } Toast.makeText(getApplicationContext(), "send", Toast.LENGTH_SHORT).show(); } }); final Button buttonrec= (Button)findViewById(R.id.ButtonRec); buttonrec.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { int size; try { byte[] buffer = new byte[64]; if (mInputStream == null) return; size = mInputStream.read(buffer); if (size > 0) { onDataReceived(buffer, size); } } catch (IOException e) { e.printStackTrace(); return; } } }); } void onDataReceived(final byte[] buffer, final int size) { runOnUiThread(new Runnable() { public void run() { if (mReception != null) { mReception.append(new String(buffer, 0, size)); } } }); } }

, , , (buttonsetup), (buttonsend), (buttonrec), 。 。


-serial , ( )


adb shell 

  cd /dev

chmod 777 ttyS2

, ttyS2, chmod , 。

Console ( , )。

COM1 , , ( )。 send , :




, demo 。

  :   http://download.csdn.net/detail/akunainiannian/5202173