串口通信
guodashen007
向阳编程工作室
展开
-
adb 返回上一页
打开系统设置界面adb shell am start -n com.android.settings/.Settings返回上一个界面adb shellinput keyevent BACK原创 2021-12-27 17:02:40 · 3366 阅读 · 0 评论 -
UnsatisfiedLinkError libSerialPort
解决办法:在Android.mk文件中加入:LOCAL_LDFLAGS += -fPIC,重新编译Google开源库的源码,生成.so库## 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 obtai.原创 2021-08-04 20:58:57 · 263 阅读 · 0 评论 -
安卓策略模式
public interface FuGuiDoorInterface { /** * 获取门状态 * @param type 门号 * @return 门状态 */ String getDoorState(String type);}public class FuGuiManager { /** * iot门的实例接口 */ private FuGuiDoorInterface mFuGuiDoorI.原创 2021-07-19 15:01:35 · 139 阅读 · 0 评论 -
Android 串口打开读写权限
连接OTG,用adb命令adb root //获取root权限,出现restarting adbd as root表示有root权限adb shellcd devchmod 777 tty* (可以指定具体的串口号,tty*是把所有的tty开头的文件权限全部设置为可读可写)原创 2021-07-16 15:35:14 · 2869 阅读 · 0 评论