mini210s
mcy_cool
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
lsusb命令在arm上的移植
1、下载源码: #wget http://dist.momonga-linux.org/pub/momonga/2/SOURCES/libusb-0.1.10.tar.gz #wget http://down1.chinaunix.net/distfiles/usbutils-0.80.tar.gz 其中libusb分为1.0版和0.1版两种版本,1.0并不向原创 2013-08-22 13:25:23 · 6612 阅读 · 1 评论 -
linux 3.10在mini210s上移植----01. tftp安装
1、安装相关软件包 #apt-get install tftpd (服务端) #apt-get install tftp (客户端) 2、建立配置文件 #vim /etc/xinetd.d/tftp 输入 service tftp { socket_type = dgram protocol = udp wait = y原创 2013-12-21 19:43:20 · 738 阅读 · 0 评论 -
linux 3.10在mini210s上移植----02.minicom安装
安装配置minicom -------------------------------------------------- # lsmod | grep usbserial (如果直接使用串口线,而没有用到USB转串口设备,此步可以跳过) 如果有usbserial,说明系统支持USB转串口。 安装minicom (Fedora自带有minicom,此步可以跳过) ap原创 2013-12-21 19:45:58 · 851 阅读 · 0 评论 -
patch和diff的用法
单个文件diff –uN from-file to-file >to-file.patch patch –p0 patch –RE –p0 多个文件 diff –uNr from-docu to-docu >to-docu.patch patch –p1 patch –R –p1原创 2014-04-14 09:23:01 · 750 阅读 · 0 评论 -
VIM 函数高亮
在syntax/c.vim文件末尾中添加如下代码: "highlight Functions syn match cFunctions "\[^()]*)("me=e-2 syn match cFunctions "\\s*("me=e-1 hi cFunctions guifg=#7fd02e cterm=bold ctermfg=yellow syn match cClass原创 2014-04-10 16:10:07 · 1333 阅读 · 0 评论 -
创建一个32M的ramdisk根文件系统
这里讲解一个32MB的EXT2类型RAMDISK根文件原创 2014-08-10 15:32:08 · 597 阅读 · 0 评论 -
linux应用层下用C调用音频驱动
static void audio_pause(void) { int err; if (alsa_can_pause) { if ((err = snd_pcm_pause(alsa_handler, 1)) { mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_PcmPaus原创 2017-11-27 12:34:29 · 897 阅读 · 0 评论
分享