- 博客(31)
- 收藏
- 关注
原创 android studio 使用 Optimize Imports 将导入语句按字母顺序排列
开发时, 导入语句总是很乱重复,Optimize Imports 很好的解决了这个问题,Optimize Imports 将导入语句按字母顺序排列.
2024-03-15 10:40:29
836
原创 android studio 找不到设备
当android studio 没有打开, 执行adb devices 可以查看到设备, 当android studio 打开, 执行adb devices 可以查看不到设备
2023-09-14 11:45:13
1678
原创 Ubuntu 中android studio JNI 开发的问题
编译报错:E/mple.ndkdemo00: Unknown bits set in runtime_flags: 0x8000
2022-08-18 11:38:55
1232
原创 int *i = &j; //表示定义一个指针变量的同时,并把j的地址赋给
int *i = &j; //表示定义一个指针变量的同时,并把j的地址赋给
2022-08-11 11:36:44
302
原创 AS 启动模拟器/dev/kvm device: permission denied
AS 启动模拟器/dev/kvm device: permission denied
2022-07-19 17:29:08
1020
转载 C++ 计算时间差
参考【C++】计算时间差 - CrazyTomato - 博客园1.clock()标准库中ctime头文件#include <ctime>#include <iostream>using namespace std;int main(){ clock_t start = clock(); //获取当前系统时间 function(); clock_t end = clock(); double pr
2022-03-21 11:21:29
7324
原创 cc1plus:所有的警告都被当作是错误
cmake .make出现cc1plus:所有的警告都被当作是错误删除./src/CMakeFiles/communication.dir/flags.make中CXX_FLAGS = -O2 -pipe -g -feliminate-unused-debug-types -std=c++11 -std=c++11 -fPIC -fPIE -O3 -fPIC -Wall -Wextra -pedantic -Werror的-Werror重新make 即可...
2022-01-06 16:20:24
2471
原创 vsomip sub/notify 调试问题
1. 调试vsomeip-3.1.20.3 中examples 的 订阅/通知, 通知的应用报此错,怀疑可能是当前电脑配置了两个路由导致(因为当前电脑需要两个路由,未修改验证),换另一台机器(一个路由),先执行订阅,再执行通知,也是报此错,$VSOMEIP_CONFIGURATION=vsomeip-service.json VSOMEIP_APPLICATION_NAME=service-sample ./notify-sample2021-11-23 10:34:34.334661 [warn
2021-12-23 11:09:37
2580
4
原创 C++ 进程间内存拷贝
1.stringstd::string ECUChipName ="J821";strcpy((char*)buf+count, ECUChipName.c_str());std::cout << "buf+count" << buf+count << std::endl;count += sizeof(ECUChipName)/8;使用memcpy会dump2. structstruct s1{char *name;int age;
2021-12-16 18:25:38
1324
原创 linux 杀死进程的shell脚本
由于代码调试进程一直存在需要手动杀死,比较费时,写个小脚本节省下时间#vi clear.sh!/bin/bashecho "$1"pid=`ps -ef | grep $1 | grep -v grep | grep -v bash | awk '{print $2}'`echo "$pid"if [ -n "$pid" ]then echo "kill -9 pid:$pid"kill -9 $pidfi[点击并拖拽以移动]#chmod.
2021-12-09 11:49:33
2336
原创 C++ 编译报错记录
1. error: default argument given for parameter 3 of ‘void split(const string&, std::vector<std::__cxx11::basic_string<char> >&, char)’ [-fpermissive]void split(const std::string &s, std::vector<std::string> &sv, const ch.
2021-12-02 18:35:23
1152
原创 vsomeip用例不能连接/tmp/vsomeip-0
2021-10-30 11:52:51.308093 [info] Parsed vsomeip configuration in 0ms2021-10-30 11:52:51.309115 [info] Using configuration file: "/etc/vsomeip.json".2021-10-30 11:52:51.309454 [info] Configuration module loaded.2021-10-30 11:52:51.309645 [info] Initiali
2021-11-30 11:57:52
2983
4
原创 virtualbox打开镜像失败The VirtualBox Linux kernel driver is either not loaded or not set up correctly.
参考dpkg:处理软件包 xxx (--configure)时出错_郑斌的博客-优快云博客 已解决
2021-11-29 16:48:39
2489
2
原创 openssl源码中的头文件include error
源码:https://github.com/openssl/openssl引用aes.hmacros.h编译报错../include/openssl/macros.h:156:4: error: #error "OPENSSL_API_COMPAT expresses an impossible API compatibility level"# error "OPENSSL_API_COMPAT expresses an impossible API compatibility level...
2021-11-25 15:40:37
3509
5
原创 tar命令 修改解压缩目录
-C代表change目录的意思sudo tar xf system.tar.xz -C system-files/ 将system.tar.xz中的内容解压到system-files 下sudo tar zcf system.tar.gz -C system-files . 将system-files 中的内容压缩为system.tar.gz
2021-11-06 08:53:13
1237
原创 交叉编译问题及解决方法
报错:/opt/ti/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/../lib/gcc/aarch64-none-linux-gnu/9.2.1/../../../../aarch64-none-linux-gnu/bin/ld: cannot find -lprotobuf原因:CMakeLists.txt 中 用set(PROTO protobuf)修改为存放protobuf库的绝对路径即可...
2021-10-22 18:04:20
643
原创 zmq 连接报错Protocol not supported
ZMQint ret = zmq_bind(socket, "epgm://192.168.1.8;239.192.1.1:5555");printf("ret 222= %d\n",ret);if (ret != 0) {printf("============");std::cout << "ep:" << zmq_strerror(errno) << std::endl;;}报错ep:Protocol not supported
2021-10-22 18:02:14
1195
原创 linux 18.04.1-Ubuntu curl-7.79.1安装及编码问题解决
1. --获得安装包,从网上直接下载或者其他途径,这里直接wget# wget http://curl.haxx.se/download/curl-7.20.0.tar.gz结果提示无法建立SSL连接解决方法:a.原命令上加上" --no-check-certificate",因为wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败。"--no-check-certificate"选项能排除掉这个错误# wget http://curl.haxx.se..
2021-10-22 15:20:35
1094
翻译 zmq Pub-Sub 模式
5. Advanced Pub-Sub Patterns | ØMQ - The Guidehttps://zguide.zeromq.org/docs/chapter5/我们将介绍:何时使用发布订阅 如何处理太慢的订阅者(自杀蜗牛模式) 如何设计高速订阅者(黑盒模式) 如何监控发布-订阅网络(Espresso 模式) 如何构建共享键值存储(克隆模式) 如何使用反应器简化复杂的服务器 如何使用 Binary Star 模式向服务器添加故障转移Pub-Sub 的优点和缺点ZeroMQ
2021-09-17 12:06:02
1551
原创 zmq 使用epgm 协议 报错Protocol not supported
环境:gcc version 7.5.0 18.04.1-Ubuntu 交叉编译、libpgm-5.2.122、zeromq-4.3.2ZMQ 使用epgm 协议int ret = zmq_bind(socket, "epgm://192.168.1.8;239.192.1.1:5555");if (ret != 0) {std::cout << "ep:" << zmq_strerror(errno) << std::endl;;}报错:e.
2021-09-16 14:48:06
1305
原创 Linux(ubuntu)中删除除了某个文件之外的所有文件
环境:18.04.1-Ubuntu保留build.properties.local 文件,删除其他所有文件执行rm -rf !(build.properties.local)结果如下
2021-08-25 09:51:37
1009
原创 Windows 下jupyter notebook 修改打开的浏览器
Windows 下jupyter notebook 修改打开的浏览器:1.2. 打开C:\Users\Administrator\.jupyter\jupyter_notebook_config.py添加import webbrowserwebbrowser.register('chrome', None, webbrowser.GenericBrowser(u'E
2017-11-16 22:39:12
13751
原创 WingIDE下载和安装
Python 编辑器WingIDE下载和安装官网下载链接:http://wingware.com/downloads Wing Pro是
2017-10-20 22:40:13
3402
原创 python numpy、skicit-learn .whl安装包下载地址
python numpy、skicit-learn .whl安装包下载地址: http://www.lfd.uci.edu/~gohlke/pythonlibs/ 机器学习是学习一些数据集的特征属性并将其应用于新的数据。这就是为什么在机器学习用来评估算法时一般把手中的数据分成两部分。一部分我们称之为训练集,用以学习数据的特征属性。一部分我们称之为测试集,用以检验学习到的特征属性。
2017-10-10 21:14:39
1070
原创 SD卡引导制作与烧写方法总结
使用SD卡给S5pv210烧写系统时问题总结及解决方法:SD卡之前制作成Android系统,然后想改成wince系统给开发板烧写系统,没有使用分区软件(我使用的是Paragon Partition Manager),直接使用SD_Writer三星.exe中的format 格式化,然后就是将需要的文件拷贝到SD卡中,将SD卡插到开发板上,并将开发板设置成SD卡启动,烧写成功。断开电源,将启动方式
2015-04-24 11:15:58
3203
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人