注意配图带水印,为本博作者头条号ID:种花家的启明星, DSP(Digital Signal Processing)即数字信号处理技术,所谓的DSP芯片即指能够实现数字信号处理技术的芯片。DSP芯片广泛应用于工业、国防等各种领域,此外还存在于我们日常生活中的各种电子设备中,例如手持终端、音频设备等。 ...
分类:
其他好文 时间:
2020-03-27 21:15:14
阅读次数:
427
答: 改变仓库的地址(<source code dir>/.git/config中的[remote "origin"]),如: .git/config中的[remote "origin"]如下: [remote "origin"] url= git://git.kernel.org/pub/scm/ ...
分类:
其他好文 时间:
2020-03-27 16:53:52
阅读次数:
166
1. 配置Git用户名和邮箱 git config user.name "用户名" git config user.email "邮箱" 2. 生成ssh key ssh-keygen -t rsa -C "邮箱" 如果报 fatal: not in a git directory, 是因为没有将当 ...
分类:
其他好文 时间:
2020-03-27 10:42:07
阅读次数:
265
Linux驱动中的异步函数(aio_read和aio_write) 我们可以在signal_handler使用了read和write函数处理设备文件的读写操作。然而这两个函数可以分别用aio_read和aio_write代替。在本节将重新改造signal驱动,使用aio_read和aio_write ...
分类:
系统相关 时间:
2020-03-26 21:38:58
阅读次数:
193
git remote add origin https://xxxxxx #添加远程仓库 git fetch origin master #将远程仓库的最新的内容拉取到本地 然后出现了如下问题: 思路: 进入到本地仓库目录下的.git 文件夹下,打开 config 文件发现原来我的 远程仓库的URL ...
分类:
Web程序 时间:
2020-03-25 09:12:23
阅读次数:
86
ReentrantLock类 在JDK1.5中,新增了 ReentrantLock,相比 synchronized 在扩展功能上更加强大,比如具有嗅探锁定、多路分支通知等功能。 示例: ...
分类:
编程语言 时间:
2020-03-24 23:09:26
阅读次数:
84
遇到的问题:写完Android.mk和Application.mk文件,然后使用cygwin+NDK编译 总是遇到下面的编译错误: fatal error: opencv2/core.hpp: No such file or directory #include "opencv2/core.hpp" ...
分类:
其他好文 时间:
2020-03-24 17:13:02
阅读次数:
165
如下图所示,当我Git克隆别人的repo时,会发生这样的错误.发现它尝试用http和https代理,后来仔细回想了下,原来是自己用了代理,忘记取消 # 查看当前git 的设置 git config --global -l # 设置代理 git config --global http.proxy h ...
分类:
数据库 时间:
2020-03-24 12:56:02
阅读次数:
1310
// // Created by gxf on 2020/3/24. // #include <stdio.h> #include <pthread.h> #include <stdlib.h> #include <unistd.h> pthread_mutex_t lock = PTHREAD_M ...
分类:
其他好文 时间:
2020-03-24 09:13:53
阅读次数:
68
在执行git pull origin master时出现: fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure yo ...
分类:
移动开发 时间:
2020-03-23 17:19:27
阅读次数:
107