Android串口通信(基于Tiny6410平台)

友善之臂的Android系统有他们自己编写的一个串口通信程序,网上没有找到他的源代码,而且界面操作不在一个界面,不是很方便,这里我自己写了一个粗糙点的串口通信程序。

同样这里还是调用友善之臂的friendlyarm-hardware.so库文件。

在Android工程文件下面加入com.friendlyarm.androidSDK包,在其下添加HardwareControler.java。下面我把我做的截图发上来。

主程序代码:

  1. package geekle.lab;
  2. import android.app.Activity;
  3. import android.os.Bundle;
  4. import android.os.Handler;
  5. import android.os.Message;
  6. import android.text.method.ScrollingMovementMethod;
  7. import android.util.Log;
  8. import android.view.View;
  9. import android.view.View.OnClickListener;
  10. import android.view.WindowManager;
  11. import android.widget.AdapterView;
  12. import android.widget.ArrayAdapter;
  13. import android.widget.Button;
  14. import android.widget.EditText;
  15. import android.widget.Spinner;
  16. import android.widget.TextView;
  17. import android.widget.Toast;
  18. import com.friendlyarm.AndroidSDK.HardwareControler;
  19. public class SerialPortActivity extends Activity
  20. {
  21. private static final String[] serial_port={"/dev/s3c2410_serial0","/dev/s3c2410_serial1","/dev/s3c2410_serial2"};
  22. private static final String[] baud_rate={"4800","9600","19200","115200"};
  23. TextView chooseserialPortView;
  24. TextView choosebaudRateView;
  25. TextView commucationView;
  26. EditText editmsg;
  27. private Button stopButton;
  28. private Button sendButton;
  29. private Spinner choose_serialport;
  30. private Spinner choose_baudrate;
  31. private ArrayAdapter<String> serialportAdapter;
  32. private ArrayAdapter<String> baudrateAdaptera;
  33. private int fd = 0;
  34. String thread = "readThread";
  35. String choosed_serial = "/dev/s3c2410_serial2";
  36. int choosed_buad = 19200;
  37. byte[] buf= new byte[300];
  38. /** Called when the activity is first created. */
  39. @Override
  40. public void onCreate(Bundle savedInstanceState)
  41. {
  42. super.onCreate(savedInstanceState);
  43. setContentView(R.layout.main);
  44. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置全屏
  45. chooseserialPortView = (TextView)findViewById(R.id.choose_serialPort_text);
  46. choose_serialport = (Spinner)findViewById(R.id.choose_seriaPort_spinner);
  47. chooseserialPortView = (TextView)findViewById(R.id.choose_baudRate_text);
  48. choose_baudrate = (Spinner)findViewById(R.id.choose_baudRate_spinner);
  49. serialportAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line,serial_port);//建立下拉控件的适配器
  50. baudrateAdaptera = new ArrayAdapter<String>(this, android.R.layout.simple_dropdown_item_1line,baud_rate);
  51. serialportAdapter.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
  52. baudrateAdaptera.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
  53. choose_serialport.setAdapter(serialportAdapter);//连接控件和适配器
  54. choose_baudrate.setAdapter(baudrateAdaptera);
  55. choose_serialport.setSelection(2);
  56. choose_baudrate.setSelection(2);
  57. choose_serialport.setOnItemSelectedListener(new Spinner.OnItemSelectedListener()
  58. {
  59. public void onItemSelected(AdapterView<?> arg0, View arg1,
  60. int arg2, long arg3) {
  61. // TODO Auto-generated method stub
  62. choosed_serial = serial_port[arg2];
  63. }
  64. public void onNothingSelected(AdapterView<?> arg0) {
  65. // TODO Auto-generated method stub
  66. }
  67. });
  68. choose_baudrate.setOnItemSelectedListener(new Spinner.OnItemSelectedListener()
  69. {
  70. public void onItemSelected(AdapterView<?> arg0, View arg1,
  71. int arg2, long arg3) {
  72. // TODO Auto-generated method stub
  73. choosed_buad = Integer.parseInt(baud_rate[arg2]);
  74. }
  75. public void onNothingSelected(AdapterView<?> arg0) {
  76. // TODO Auto-generated method stub
  77. }
  78. });
  79. fd = HardwareControler.openSerialPort(choosed_serial,choosed_buad, 8, 1);//打开串口
  80. if (fd != -1) {
  81. Toast.makeText(getApplicationContext(), getResources().getString(R.string.open_serial_success)+choosed_serial, 1).show();
  82. } else {
  83. Toast.makeText(this, getResources().getString(R.string.open_fail), 1).show();
  84. }
  85. stopButton = (Button)findViewById(R.id.stopButton);
  86. stopButton.setOnClickListener(new ClickEvent());
  87. sendButton = (Button)findViewById(R.id.sendButton);//发送消息
  88. sendButton.setOnClickListener(new OnClickListener() {
  89. public void onClick(View arg0) {
  90. // TODO Auto-generated method stub
  91. HardwareControler.write(fd, editmsg.getText().toString().getBytes());
  92. commucationView.append(editmsg.getText()+"\n");
  93. }
  94. });
  95. commucationView = (TextView)findViewById(R.id.commucation_window);
  96. commucationView.setMovementMethod(ScrollingMovementMethod.getInstance()); //让textview实现滚动
  97. editmsg = (EditText)findViewById(R.id.editmsg);
  98. new readThread().start();//开始串口的监听线程
  99. }
  100. public class ClickEvent implements Button.OnClickListener//退出
  101. {
  102. public void onClick(View arg0) {
  103. // TODO Auto-generated method stub
  104. android.os.Process.killProcess(android.os.Process.myPid());
  105. System.exit(0);
  106. }
  107. }
  108. Handler handler = new Handler() {
  109. public void handleMessage(Message msg) {
  110. switch (msg.arg1) {
  111. case 0:
  112. int len = HardwareControler.read(fd, buf, 300);
  113. String string = new String(buf, 0, len);
  114. commucationView.append(string+"\n");
  115. new readThread().start();//处理完消息后立即开启监听线程
  116. Log.d(thread,"接收到数据,新线程启动");
  117. break;
  118. case 1:
  119. HardwareControler.setLedState(1, 0);
  120. new readThread().start();
  121. //                Log.d(thread,"没有数据,新线程启动");
  122. break;
  123. default:
  124. break;
  125. }
  126. }
  127. };
  128. class readThread extends Thread//读取串口信息线程
  129. {
  130. public void run()
  131. {
  132. Message msg = new Message();
  133. HardwareControler.setLedState(0, 0);
  134. if (HardwareControler.select(fd,5, 0)==1) {
  135. msg.arg1 = 0;
  136. }
  137. else {
  138. msg.arg1 =1;
  139. HardwareControler.setLedState(0, 1);
  140. }
  141. handler.sendMessage(msg);
  142. }
  143. }
  144. }

main.xml代码:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <TextView
  7. android:id="@+id/choose_serialPort_text"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:text="@+string/chooseserialPort" />
  11. <Spinner
  12. android:id="@+id/choose_seriaPort_spinner"
  13. android:layout_width="wrap_content"
  14. android:layout_height="40dp" >
  15. </Spinner>
  16. <TextView
  17. android:id="@+id/choose_baudRate_text"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="@+string/choosebaudRate" />
  21. <Spinner
  22. android:id="@+id/choose_baudRate_spinner"
  23. android:layout_width="wrap_content"
  24. android:layout_height="40dp" >
  25. </Spinner>
  26. <TextView
  27. android:id="@+id/commucation_window"
  28. android:layout_width="fill_parent"
  29. android:layout_height="190dp" >
  30. </TextView>
  31. <EditText
  32. android:id="@+id/editmsg"
  33. android:layout_width="fill_parent"
  34. android:layout_height="wrap_content"
  35. android:hint="edit here" />
  36. <LinearLayout
  37. android:layout_width="fill_parent"
  38. android:layout_height="wrap_content"
  39. android:layout_weight="1"
  40. android:orientation="horizontal" >
  41. <Button
  42. android:id="@+id/sendButton"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_weight="1"
  46. android:text="@+string/send" />
  47. <Button
  48. android:id="@+id/stopButton"
  49. android:layout_width="wrap_content"
  50. android:layout_height="wrap_content"
  51. android:layout_weight="1"
  52. android:text="@string/stopButton" />
  53. </LinearLayout>
  54. </LinearLayout>

Android串口通信(基于Tiny6410平台)

时间: 2024-11-06 20:23:45

Android串口通信(基于Tiny6410平台)的相关文章

Android串口通信

1. 解析SerialPort API 串口通信例子 首先分析一下例子中的类结构 : 通过类结构可知,最主要的还是在SerialPortJNI.java 类 ,该类写了一些Native 方法处理打开与关闭 串口 接收 发送的 SerialPort.Java 代码如下 : package com.dwin.navy.serialportapi; import java.io.FileDescriptor; import android.util.Log; /** * 串口JNI * * @auth

(转载)用vs2010开发基于VC++的MFC 串口通信一*****两台电脑同一个串口号之间的通信

此文章以visual C++数据採集与串口通信測控应用实战为參考教程 此文章适合VC++串口通信入门 一.页面布局及加入控件 1, 安装好vs2010如图 2, 新建一个基于VC++的MFC项目comm 注意:点击ok,然后next,这时候要将application type改成dialog base.接着next到最后一个对话框是将generated dasses改成CcommDlg,然后finish 4, 将新生成的项目的对话框默认dialog edit删去,如图 5,在对话框中加入两个st

基于mina的的android即时通信app

前段时间研究mina框架,发现很适合做即时通信后台,经过几个月的研发本人开发了一套基于mina框架的android即时通信app,暂命名为E聊.鉴于本人能力有限还存在不少bug,希望大家原谅并指出,bug和部分功能还在不断完善中,过段时间部分代码会进行开源,敬请关注. 主要功能包括: 1.私聊,群聊 2.支持文字.语音.图片.文件.小视频等 3.位置共享(开发中) 4.朋友圈(图文发布.评论等,小视频功能正在开发中) 5.上线通知,断线重连 6.接收离线消息 7.更多功能正在筹划中... 演示图

基于串口通信的DSP应用程序在线升级方法

转载内容,源地址http://www.qiytech.com/jiejuefangan/gongyekz/922.html 摘  要:为解决特殊场合DSP程序升级困难的问题,以TMS320F28035为例,介绍了一种基于串口通信的适合于TMS320C2000系列DSP实现程序更新的在线升级方法.描述了该在线升级方法的基本思想和实现步骤,给出了关键部分的程序代码.实验证明,该方法简单可靠,可用于嵌入式设备软件程序的升级更新中. 关键词: 在线升级: DSP:串口通信: Flash TMS320C2

[stm32][ucos] 1、基于ucos操作系统的LED闪烁、串口通信简单例程

* 内容简述: 本例程操作系统采用ucos2.86a版本, 建立了5个任务            任务名                                             优先级            APP_TASK_START_PRIO                               2            主任务                          Task_Com1_PRIO                                

基于Zynq平台的EtherCAT主站方案实现

作者:陈秋苑 谢晓锋 陈海焕 广州虹科电子科技有限公司 摘 要:EtherCAT 是开放的实时以太网通讯协议,由德国倍福自动化有限公司研发.EtherCAT 具有高性能.低成本.容易使用等特点,目前在工业自动化领域有着广泛的应用.Zynq-7000 是赛灵思公司(Xilinx)推出的行业第一个全可编程 SoC 产品, 它将双核 ARM Cortex-A9 处理器,低功耗可编程逻辑以及常用的外设紧密集成在一起.ZedBoard 是基于 XC7Z020 器件的低成本开发板,此板可以运行基于 Linu

这里整理了基于java平台的常用资源

这里整理了基于java平台的常用资源 翻译 from :akullpp | awesome-java 大家一起学习,共同进步. 如果大家觉得有用,就mark一下,赞一下,或评论一下,让更多的人知道.thanks. 构建 这里搜集了用来构建应用程序的工具. Apache Maven:Maven使用声明进行构建并进行依赖管理,偏向于使用约定而不是配置进行构建.Maven优于Apache Ant.后者采用了一种过程化的方式进行配置,所以维护起来相当困难. Gradle:Gradle采用增量构建.Gra

彻底理解 Android Binder 通信架构

roid 6.0的源码剖析, 本文深度剖析Binder IPC过程, 这绝对是一篇匠心巨作,从Java framework到Native,再到Linux Kernel,带你全程看Binder通信过程. 一. 引言 1.1 Binder架构的思考 Android内核是基于Linux系统, 而Linux现存多种进程间IPC方式:管道, 消息队列, 共享内存, 套接字, 信号量, 信号. 为什么Android非要用Binder来进行进程间通信呢.从我个人的理解角度, 曾尝试着在知乎回答同样一个问题 为

星云测试- Android应用深度体检专业平台

星云测试-给你的Android应用做个深度体检   星云测试- Android应用深度体检专业平台 星云在线云测试(简称星云测试www.teststars.cc)是全球第一个发布并商用的数字化精准软件测试平台,与其他软件云测试平台相比,它更关注软件最核心的功能测试.简单的说,我们把软件视同一个生命,为它做全面的X光扫描,而后给出详细体检报告,每一个报告数据后面均有精准.无损.可追溯的数据为依托,协助您快速判断软件是否健康,还是需要立刻切除病灶. 星云测试使软件测试从过度依赖人工记录.验证,转换为