异常处理
郭名宝
程序员必须熟悉代码,像了解自己一样了解代码。
程序是为了执行人的逻辑想法。所以实现某一功能时,必须理清逻辑顺序。
展开
-
类重复: com.actions.pcbatest.R 重复错误
packages/apps/s500_aio_pcbatest/gen/com/actions/pcbatest/R.java:6: 错误: 类重复: com.actions.pcbatest.Rpublic final class R { ^注: 某些输入文件使用或覆盖了已过时的 API。注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。转载 2017-09-22 20:32:24 · 2163 阅读 · 0 评论 -
Ioctl返回-1 出错,解决办法
Ioctl返回-1 出错,解决办法通过APK 操作gpio驱动 点灯时,发现ioctl(gpio_fileHandler, cmd, arg) 函数返回值一直是-1.驱动无法执行ioctl 中gpio request等其他操作.我怀疑是ioctl函数有问题.发现file_operations 中ioctl用的是 .unlocked_ioctl .static const struct file_op转载 2017-09-14 20:55:44 · 12289 阅读 · 1 评论 -
"GSL3680/gsl_point_id.a: error adding symbols: 文件格式错误" 解决办法
由于GSL3680 TP驱动中包含一个 gsl_point_id.a_shipped 封装文件,不开源.里面包含了一些编译所需的函数等.这是TP:GSL3680驱动几个主要文件: gsl_point_id.a_shipped gslX680.c gslX680.h Makefile readme.txt2.make module 报下面错误make[6]: *** [drivers/i原创 2017-08-10 21:28:06 · 3386 阅读 · 0 评论 -
编译linux 源码:make[2]: g++: Command not found
下面是错误代码make[2]: g++: Command not foundMakefile:50: recipe for target 'arg_parser.o' failedmake[2]: *** [arg_parser.o] Error 127make[2]: *** Waiting for unfinished jobs....make[2]: g++: Command...原创 2019-04-19 15:09:15 · 1878 阅读 · 0 评论