文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android串口使用3之使用CMake工具完成android-serialport-api库的移植

2022-06-06 13:54

关注

君问归期未有期,巴山夜雨涨秋池。
对于Android串口的使用,基本已经被写烂了,网上一搜一大堆教程,还有很多大佬也已经封装成库了,可以在项目中直接添加依赖进行使用。用别人造的轮子不好吗?非要自己动手再造轮子?这是在弄啥嘞?
emm。。。。。这么一说好像这篇文章没必要往下写了。。。。。。

别人造的轮子https://github.com/xmaihh/Android-Serialport

这个轮子造的不错,但是有个小瑕疵,如果使用默认的粘包处理,默认的是不处理粘包,直接读取返回,但是在返回数据的时候,将数据位扩展成64位了,对于接收数据量比较少的数据,会产生很多 多余的“0”

问题是出现在BaseStickPackageHelper里面

//原来定义的数据
byte[] buffer = new byte['?'];
//可以改成这样
byte[] buffer = new byte[available];

好了,是时候打脸了,我要往下写了,谁让咱们是勤写标兵呢
这篇文章其实是接着我上一篇文章的,Android串口使用2之使用Google官方库android-serialport-api 它是用Android.mk方式实现的,而这篇文章用CMake工具也可以做到,反正最后都能抓到老鼠,至于它是黑猫、白猫还是红猫,那就要看你怎么看咯。

由于Android Studio 3.5版本在新建项目之时,无法看到Include C++ Support这个选项,本来可以一步到位的操作,现在要多走几步了。

检查NDK和CMake是否安装
找到Settings,或者使用快捷键Ctrl + Alt + S。搜索Android SDK,找到SDK Tools,选中CMake和NDK,点击Apply,最后点OK。
在这里插入图片描述 无论是新建项目还是在旧的项目上,切换项目视图到Project模式,默认是Android模式。找到src/main,右键main文件夹,选择New,找到Folder,选择JNI Folder
在这里插入图片描述将上篇文章中的SerialPort.h和SerialPort.c这两个文件复制过去,复制android-serialport-api库中的也行。在这里插入图片描述 右键app,New一个File文件,命名为CMakeLists.txt
在这里插入图片描述CMakeLists.txt内容如下:
# For more information about using CMake with Android Studio, read the
# documentation: https://d.android.com/studio/projects/add-native-code.html
# Sets the minimum version of CMake required to build the native library.
cmake_minimum_required(VERSION 3.4.1)
# Creates and names a library, sets it as either STATIC
# or SHARED, and provides the relative paths to its source code.
# You can define multiple libraries, and CMake builds them for you.
# Gradle automatically packages shared libraries with your APK.
add_library( # Sets the name of the library.
        SerialPort
        # Sets the library as a shared library.
        SHARED
        # Provides a relative path to your source file(s).
        src/main/jni/SerialPort.c)
# Searches for a specified prebuilt library and stores the path as a
# variable. Because CMake includes system libraries in the search path by
# default, you only need to specify the name of the public NDK library
# you want to add. CMake verifies that the library exists before
# completing its build.
find_library( # Sets the name of the path variable.
        log-lib
        # Specifies the name of the NDK library that
        # you want CMake to locate.
        log)
# Specifies libraries CMake should link to your target library. You
# can link multiple libraries, such as libraries you define in this
# build script, prebuilt third-party libraries, or system libraries.
target_link_libraries( # Specifies the target library.
        SerialPort
        # Links the target library to the log library
        # included in the NDK.
        ${log-lib})

CMakeLists.txt这个文件主要定义了哪些文件需要编译,以及和其他库的关系等。

右键app,选择Link C++ Project with Gradle
在这里插入图片描述 配置app/build.gradle文件
如果上面gradle成功之后,会自动生成下面内容的
externalNativeBuild {
        cmake {
            path file('CMakeLists.txt')
        }
    }

但是还需要手动添加一点内容

defaultConfig {
        ......
        externalNativeBuild {
            cmake {
                cppFlags ""
                //.so文件所支持的CPU架构
                abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86_64', 'x86'
            }
        }
    }

目前Android系统支持以下七种不用的CPU架构,每一种对应着各自的应用程序二进制接口ABI:(Application Binary Interface)定义了二进制文件(尤其是.so文件)如何运行在相应的系统平台上,从使用的指令集,内存对齐到可用的系统函数库。对应关系如下:
ARMv5——armeabi
ARMv7 ——armeabi-v7a
ARMv8——arm64-v8a
x86——x86
MIPS ——mips
MIPS64——mips64
x86_64——x86_64

最后一步,在src/main/java根目录下,新建一个文件夹android_serialport_api,名字千万不要改哦,因为这个名字链接着这个api库,改变之后,java代码无法调用它,会报错的。
复制之前的SerialPort.java到这个文件夹里,但是需要修改一个地方,因为CMakeLists文件定义了这个库的名字是SerialPort,也可以自定义这个库名,跟下面对应上就可以了:
static {
		System.loadLibrary("SerialPort");
	}

写到这里,基本就完成了android-serialport-api库的移植,感觉所做的事情也不少,就当学习下新技能,CMake工具的简单使用。

如果需要源代码的,可以点这里。
源代码


作者:Steven Jon


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯