博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 从硬件到应用程序:一步一步爬上去 6 -- 我写的APP测试框架层硬件服务(终点)...
阅读量:5150 次
发布时间:2019-06-13

本文共 4196 字,大约阅读时间需要 13 分钟。

       创Android Applicationproject:采用Eclipse的Android插入ADT创Androidproject,project名字Gpio,创建完成后,project文件夹packages/apps/文件夹下,并删除project文件夹下的gen文件夹。不删除的话会造成类反复的错误。

src/com/android/gpio/Gpio.java:

package com.android.gpio;  import com.android.gpio.R;  import android.app.Activity;  import android.os.ServiceManager;  import android.os.Bundle;  import android.os.IGpioService;  import android.os.RemoteException;  import android.util.Log;  import android.view.View;  import android.view.View.OnClickListener;  import android.widget.Button;  public class Gpio extends Activity implements OnClickListener {  private final static String LOG_TAG = "com.android.Gpio";  private IGpioService gpioService = null;  private Button setButton = null;  private Button clearButton = null;    /** Called when the activity is first created. */  @Override  public void onCreate(Bundle savedInstanceState) {  	super.onCreate(savedInstanceState);  	setContentView(R.layout.main);  	gpioService = IGpioService.Stub.asInterface(  	ServiceManager.getService("gpio"));  	setButton = (Button)findViewById(R.id.button_set);  	clearButton = (Button)findViewById(R.id.button_clear);  	setButton.setOnClickListener(this);  	clearButton.setOnClickListener(this);  }    @Override  public void onClick(View v) {  	if(v.equals(setButton)) {   	try{		int val='1';		gpioService.setVal(val);	} catch (RemoteException e){		Log.e(LOG_TAG,"setting value");		}		} 	else if(v.equals(clearButton)) {	try{		int val='0';		gpioService.setVal(val);	   } catch (RemoteException e){		Log.e(LOG_TAG,"setting value");		   }		   }  	}  }
布局res/layout/main.xml:

xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <Button android:id="@+id/button_clear" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/clear" android:textStyle="bold" android:layout_marginTop="140dp"/> <Button android:id="@+id/button_set" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/set" android:textStyle="bold" android:layout_marginTop="0dp"/> </LinearLayout>

字符串res/values/strings.xml:

> <resources> <string name="app_name">GPIO</string> <string name="set">Set</string> <string name="clear">Clear</string> </resources>

AndroidManifest.xml:

xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.gpio" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name"> <activity android:name=".Gpio" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>

编辑project文件夹下Android.mk:

LOCAL_PATH:= $(call my-dir)include $(CLEAR_VARS)LOCAL_MODULE_TAGS := optionalLOCAL_SRC_FILES := $(call all-subdir-java-files)LOCAL_PACKAGE_NAME := GpioLOCAL_CERTIFICATE := platforminclude $(BUILD_PACKAGE)include $(call all-makefiles-under,$(LOCAL_PATH))
编辑build/target/product/generic_no_telephony.mk:

在PRODUCT_PACKAGES := \ 后增加Gpio \

编译project会生成Gpio.apk

make TARGET_PRODUCT=am335xevm_sk -j8 OMAPES=4.x
到这一步一切准备工作都已就绪,開始更新目标板am335evm的文件系统:(左为host,右为evm)

out/target/product/am335xevm_sk/system/app/Gpio.apk                 ==>   rootfs/out/target/product/am335xevm_sk/system/framework/services.jar       ==>   rootfs/system/framework/out/target/product/am335xevm_sk/system/framework/framework.jar      ==>   rootfs/system/framework/out/target/product/am335xevm_sk/obj/lib/libandroid_servers.so       ==>   rootfs/system/lib/out/target/product/am335xevm_sk/obj/lib/gpio.default.so             ==>   rootfs/system/lib/hw/

确保rootfs下 ueventd.rc 已经加入:( 提到)

/dev/AdrIO                0666   root       root
启动,安装Gpio.apk。打开GPIO:

现象:

点击"Set"button:     D1灯亮    点击"Clear"button:   D1灯灭

可见编写的APP通过调用硬件服务已经成功操作了AM335寄存器,改变AM335X_GPIO_LED4级别。经N渎MOS设备控制LED D1灯灭。

版权声明:本文博主原创文章,博客,未经同意不得转载。

转载于:https://www.cnblogs.com/mengfanrong/p/4848562.html

你可能感兴趣的文章
淘宝JAVA中间件Diamond详解(一)---简介&快速使用
查看>>
Hadoop HBase概念学习系列之HBase里的宽表设计概念(表设计)(二十七)
查看>>
Kettle学习系列之Kettle能做什么?(三)
查看>>
【Mac + GitHub】之在另一台Mac电脑上下载GitHub的SSH链接报错
查看>>
Day03:Selenium,BeautifulSoup4
查看>>
awk变量
查看>>
mysql_对于DQL 的简单举例
查看>>
35. Search Insert Position(C++)
查看>>
[毕业生的商业软件开发之路]C#异常处理
查看>>
一些php文件函数
查看>>
有关快速幂取模
查看>>
Linux运维必备工具
查看>>
字符串的查找删除
查看>>
NOI2018垫底记
查看>>
快速切题 poj 1002 487-3279 按规则处理 模拟 难度:0
查看>>
Codeforces Round #277 (Div. 2)
查看>>
【更新】智能手机批量添加联系人
查看>>
NYOJ-128前缀式计算
查看>>
淡定,啊。数据唯一性
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>