关于android studio下使用android-serialport-api。
首先,为什么注明2017年,我是今年才开始做android的,用的sdk和ndk都是最新版的。
然而,我在网上找的不管是代码还是帖子,用前辈们教我们的方法,使用android-serialport-api都是运行到open的时候闪退。
如果你也发现是这样,那么就阅读我这篇文章吧,如果你还没到这一步,先看jni技术上的问题和android-serialport-api的使用方法吧。
我另一个文章会介绍使用。
当你是个新手,也就是说你用比较新的sdk和ndk时,当你调用到打开串口时,会发现程序闪退;
闪退的原因是so库的问题,用android studio Debug,你会发现
cannot locate symbol "tcgetattr" referenced by "libserial_port.so"这个问题;
原因是tcgetattr这个函数在compileSdkVersion 19时,和某一个版本(compileSdkVersion 23)之后,函数已经改变了。
这个函数或者定义出现在termios.h中,19里是内联,23里是定义。
Api23时,int tcgetattr(int, struct termios*);
Api19时,static __inline__ int tcgetattr(int fd, struct termios *s){
Return ioctl(fd, TCGETS, s);
}
但似乎除了使用了内联之外没什么特别之处,好像调用的方式也没有区别,但就是用新版本不行,具体原因还不是很明白。
其中,19-23之间具体哪个版本时发生了改变,有兴趣的朋友自己去找吧。我就不找了。
=============================================
第一种方式,接下来解决问题的方式,目前我采用的是(当不知道确切有原因时,我采用的这个方法,当确认是这个问题后我采用了后面的方法;后面的方法更有助于开发。)
修改android studio中build.gradle(Module:app)文件的
compileSdkVersion 19
targetSdkVersion 19
这时候你又会发现,程序报了一堆错误(全来自XML文件)。这些错误是由于调用低版本的sdk和ndk等,很多控件的样式,主题的样式不被认识了。所以要去改这些错误就要牺牲界面的美观度了。 就是使用老的界面主题等。 具体方法不说了。
相关网址:
http://www.th7.cn/Program/java/201607/890892.shtml
http://www.jianshu.com/p/8be9d40555d7
https://www.zhihu.com/question/34094091
http://www.cfanz.cn/index.php?c=article&a=read&id=240185
http://blog.csdn.net/a3630623/article/details/52169556
http://blog.csdn.net/IT_faquir/article/details/52133366
这些网址是我觉得对以上问题有所帮助的文章,不懂我说的东西的朋友可以参考一下。===============================================
第二种方式,不改变compileSdkVersion 23和targetSdkVersion 23。
最好的解决办法就是修改这个android-serialport-api包中serialport.c这个文件,使他调用老版本的tcgetattr函数,就是从根本上解决问题。
这里我是这么做的:
找到老版本(19)的termios.h,cp到jni目录里面,把serialport.c中的include<termios.h>改成include"termios.h",发现编译后,termios.h会出错,因为这个是老版本的头文件,应该是在新版本(23)找不到对应的函数吧;把报错的那个定义或者函数删掉即可,再编译成功。
这个头文件是在sdk “android-19\arch-arm\usr\include”这个目录中的
/*
* Copyright (C) 2008 The Android Open Source Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef _TERMIOS_H_
#define _TERMIOS_H_
#include <sys/cdefs.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <stdint.h>
#include <linux/termios.h>
__BEGIN_DECLS
/* Redefine these to match their ioctl number */
#undef TCSANOW
#define TCSANOW TCSETS
#undef TCSADRAIN
#define TCSADRAIN TCSETSW
#undef TCSAFLUSH
#define TCSAFLUSH TCSETSF
static __inline__ int tcgetattr(int fd, struct termios *s)
{
return ioctl(fd, TCGETS, s);
}
static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s)
{
return ioctl(fd, __opt, (void *)s);
}
static __inline__ int tcflow(int fd, int action)
{
return ioctl(fd, TCXONC, (void *)(intptr_t)action);
}
static __inline__ int tcflush(int fd, int __queue)
{
return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
}
static __inline__ pid_t tcgetsid(int fd)
{
pid_t _pid;
return ioctl(fd, TIOCGSID, &_pid) ? (pid_t)-1 : _pid;
}
static __inline__ int tcsendbreak(int fd, int __duration)
{
return ioctl(fd, TCSBRKP, (void *)(uintptr_t)__duration);
}
static __inline__ speed_t cfgetospeed(const struct termios *s)
{
return (speed_t)(s->c_cflag & CBAUD);
}
static __inline__ int cfsetospeed(struct termios *s, speed_t speed)
{
s->c_cflag = (s->c_cflag & ~CBAUD) | (speed & CBAUD);
return 0;
}
static __inline__ speed_t cfgetispeed(const struct termios *s)
{
return (speed_t)(s->c_cflag & CBAUD);
}
static __inline__ int cfsetispeed(struct termios *s, speed_t speed)
{
s->c_cflag = (s->c_cflag & ~CBAUD) | (speed & CBAUD);
return 0;
}
static __inline__ void cfmakeraw(struct termios *s)
{
s->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
s->c_oflag &= ~OPOST;
s->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
s->c_cflag &= ~(CSIZE|PARENB);
s->c_cflag |= CS8;
}
static __inline int cfsetspeed(struct termios* s, speed_t speed) {
// TODO: check 'speed' is valid.
s->c_cflag = (s->c_cflag & ~CBAUD) | (speed & CBAUD);
return 0;
}
//static __inline int tcdrain(int fd) {
// // A non-zero argument to TCSBRK means "don't send a break".
// // The drain is a side-effect of the ioctl!
// return ioctl(fd, TCSBRK, __BIONIC_CAST(static_cast, unsigned long, 1));
//}
__END_DECLS
#endif /* _TERMIOS_H_ */
===============================================================================
可以结束了,还不明白的话留言吧。