自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (6)
  • 收藏
  • 关注

原创 嵌入式linux下 华为E353模块3G自动上网配置

相关软件: usb_modeswitch

2014-08-08 15:14:18 2332

转载 Linux串口测试程序

#include #include #include #include #include #include #include #include #define MAX_BUF_SIZE     2048char buf[MAX_BUF_SIZE+2];#define MY_END_C

2014-08-06 16:45:15 975

转载 Linux 测试磁盘IO性能的几种方法

在磁盘测试中最关心的几个指标分别为:iops(每秒执行的IO次数)、bw(带宽,每秒的吞吐量)、lat(每次IO操作的延迟)。 当每次IO操作的block较小时,如512bytes/4k/8k等,测试的主要是iops。 当每次IO操作的block较大时,如256k/512k/1M等,测试的主要是bw。1. 最简单的dd dd是linux自带的磁盘读写工具,可用于测试顺序读写。 一般而言,磁盘读

2014-08-06 15:45:18 13614 2

转载 u盘自动挂载-udev (转载加修改)

Linux传统上使用静态设备创建的方法,在dev下创建了大量的节点,而不管这些节点相应的硬件设备是否存在。采用udev的方法,系统检测到设备才会往创建这些设备对应的节点。  这里我们简单的说一下udev的工作原理:  Udev是依靠于sysfs的,当系统中添加一个新的设备后,内核检测到后就会产生一个hotplug event并查找/proc/sys/kernel/hotplug往找

2014-08-06 09:17:52 3171

原创 dhcpcd-6.4.3移植记录

下载:http://roy.marples.name/downloads/dhcpcd/解压后./configure --disable-debug \--enable-fork \--disable-ipv6 \--disable-inet6 \--enable-embedded \--prefix=./install \--host=powerpc-linux

2014-08-05 10:12:18 1098

转载 Linux笔记]Linux进程间通信

From:国嵌视频1. 为什么进程间需要通信1)数据传输    一个进程需要将它的数据发送给另一个进程。2)资源共享    多个进程之间共享同样的资源。3)通知事件    一个进程需要向另一个或一组进程发送消息,通知它们发生了某种事件。4)进程控制    有些进程希望完全控制另一个进程的执行(如Debug进程),此时控制进程希望能够拦截另一个进程的所有操作,

2014-08-01 09:54:55 483

STM32F103 USB虚拟串口通信

STM32F103通过USB口与上位机通信:通过一根USB线既能供电也能与上位机通信 在Linux下生成/dev/ttyACM0 参考了文档:https://www.cnblogs.com/hiker-blogs/p/stm32_usb.html

2018-08-01

tensorflow-1.6.0-cp35-cp35m-linux_aarch64.whl

tensorflow-1.6.0-cp35-cp35m-linux_aarch64.whl tensorflow 1.60. for python3.5 linux aarch64(arm64)

2018-07-19

tensorflow-1.6.0-cp27-cp27mu-linux_aarch64.whl

tensorflow-1.6.0-cp27-cp27mu-linux_aarch64.whl tensorflow 1.60. for python2.7 linux aarch64(arm64)架构

2018-07-19

RK3288/3399 Android Root工具

RK3288/RK3399 的Android 32/64位系统root工具包 详见我的博客:https://blog.csdn.net/houxn22/article/details/81013718

2018-07-12

ftplib-4.0

FTP Library Routines Release 4.0 Thomas Pfau ([email protected]) June 7, 2013 This package implements a callable interface to FTP. The FTP protocol is specified in RFC 959. The library has been tested on linux, OpenVMS and Windows NT. It should also work without major modification on other POSIX systems. All programs using the library should include ftplib.h. FTP开源库。 Miscellaneous Functions FtpInit() - Initialize the library FtpSite() - Send a 'SITE' command FtpLastResponse() - Retrieve last server response FtpSysType() - Determine remote system type FtpSize() - Determine size of remote file FtpSizeLong() - Determine size of remote file FtpModDate() - Determine modification time of file FtpSetCallback() - Establish a callback function FtpClearCallback() - Remove a callback function Server Connection FtpConnect() - Connect to a remote server FtpLogin() - Login to remote machine FtpQuit() - Disconnect from remote server FtpOptions() - Set Connection Options Directory Functions FtpChdir() - Change working directory FtpMkdir() - Create a directory FtpRmdir() - Remove a directory FtpDir() - List a remote directory FtpNlst() - List a remote directory FtpCDUp() - Change to parent directory FtpPwd() - Determine current working directory File to File Transfer FtpGet() - Retreive a remote file FtpPut() - Send a local file to remote FtpDelete() - Delete a remote file FtpRename() - Rename a remote file File to Program Transfer These routines allow programs access to the data streams connected to remote files and directories. FtpAccess() - Open a remote file or directory FtpRead() - Read from remote file or directory FtpWrite() - Write to remote file FtpClose() - Close data connection Utilities qftp - Command line ftp utility

2015-02-12

读写ini配置文件 C C++

读写ini配置文件的C代码 可以跨平台(支持Linux Windows等),实现了VC中的 WritePrivateProfileString 和 GetPrivateProfileString功能。 支持去除等号两边空格、去除单双引号、中括号等,包含方便调用的子函数,可根据需要自己修改 只包含两个文件:profile.c和profile.h,非常好移植

2013-01-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除