登录

最新会员 最新下载

成为了本站VIP会员

10月30日 16:42

成为了本站VIP会员

10月27日 10:54

成为了本站VIP会员

10月23日 19:14

成为了本站VIP会员

10月21日 21:03

成为了本站VIP会员

10月20日 16:48

成为了本站VIP会员

10月14日 20:46
已选条件
  1. 编程语言:LINUX
  2. 代码类别:所有
  3. 发布时间:不限
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. 调用系统函数,模拟实现linux系统的more命令

调用系统函数,模拟实现linux系统的more命令-Call the system function, analog realize more command linux system

1
下载
47
浏览
2023-07-09发布

2. 这是浙大Linux课件配套教程,对于初学者来说,提供了可靠的依据。

这是浙大Linux教程配套课件,它为初学者提供了很好的平台,里面详细介绍了LINUX的安装和应用,不仅有文字,还有截图的详细介绍,让大家一看就懂-This is Zheda Linux courseware supporting tutorials, for beginners it provides a good platform, which details the installation of LINUX and applications, not only has the text, there is a screenshot of the detailed introduction, let everyone know one look on

1
下载
43
浏览
2023-07-08发布

3. linux串口编程,标准linux下,有参数设置,打开串口,关闭串口,读写串口等,需要就试试吧...

linux串口编程,标准linux下,有参数设置,打开串口,关闭串口,读写串口等,需要就试试吧-linux serial port programming, standards, linux, there are parameter settings, open the serial port, close the serial port, read and write serial port and so on, need to try it

1
下载
32
浏览
2023-07-08发布

4. wpa_supplicant

资源描述 wpa_supplicant源代码 包括对wifi驱动的控制、WPA/WPA2 4次握手协议的处理、控制wifi驱动连接wifi等

1
下载
37
浏览
2023-07-08发布

6. SkyEye是一个可以运行嵌入式操作系统的硬件仿真工具,这样就可以在没有硬件条件下来进行嵌入式系统的开发。...

SkyEye是一个可以运行嵌入式操作系统的硬件仿真工具,这样就可以在没有硬件条件下来进行嵌入式系统的开发。-SkyEye is an embedded operating system can run the hardware simulation tool, so that when there is no hardware to carry out the development of embedded systems.

1
下载
39
浏览
2023-07-07发布

7. Linux system administration commands use and specific details of the experimenta...

Linux的系统管理命令的使用 及具体详细的实验报告-Linux system administration commands use and specific details of the experimental report

1
下载
31
浏览
2023-07-07发布

9. Network congestion in the PI algorithm source code, you can use NS

网络拥塞中的PI算法源码,可以在用NS-2仿真软件方针,也可以用于其它算法开发-Network congestion in the PI algorithm source code, you can use NS-2 simulation software approach, can also be used for the development of other algorithms

1
下载
43
浏览
2023-07-07发布

11. linux read serial data

此程序是linux下读取串口数据,程序分为三部分,第一部分初始化串口,第二部分解析数据包头,第三部分是解析完整的一帧数据。 此串口是读取的数据是陀螺数据 ,并解析数据,读者要读取其它串口数据可以直接修改数据解析部分即可。

1
下载
42
浏览
2023-07-06发布

12. TCP socket programming

TCP协议下套接字编程-TCP socket programming

1
下载
40
浏览
2023-07-06发布

13. c语言实现链表的基本操作

链表是一种物理存储单元上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的。链表由一系列结点(链表中每一个元素称为结点)组成,结点可以在运行时动态生成。每个结点包括两个部分:一个是存储数据元素的数据域,另一个是存储下一个结点地址的指针域。 相比于线性表顺序结构,操作复杂。由于不必须按顺序存储,链表在插入的时候可以达到O(1)的复杂度,比另一种线性表顺序表快得多,但是查找一个节点或者访问特定编号的节点则需要O(n)的时间,而线性表和顺序表相应的时间复杂度分别是O(logn)和O(1)。本代码是实现了c语言实现链表的基本操作,如创建链表,增加节点,删除节点,查找节点。

2
下载
38
浏览
2023-07-06发布

14. minigui的开发程序,非常典型的程序,在sc2410上跑通了,很漂亮哦了...

minigui的开发程序,非常典型的程序,在sc2410上跑通了,很漂亮哦了-minigui development of procedures, very typical procedure, in the run sc2410 had, oh, a very beautiful

1
下载
45
浏览
2023-07-05发布

15. 产生哈希函数的代码,各种好像都有,希望大家参考,不要浪费太多时间!...

产生哈希函数的代码,各种好像都有,希望大家参考,不要浪费太多时间!

1
下载
44
浏览
2023-07-05发布

16. 网络经典命令行指令

网络经典命令行指令-network classic command-line instructions

1
下载
35
浏览
2023-07-05发布

17. goolge phone 目前没有开放的android 平台的源码

goolge phone 目前没有开放的android 平台的源码-goolge phone there is no open-source android platform

1
下载
72
浏览
2023-07-05发布

18. Linux下的socks的程序源程序,用于socks的代理服务

Linux下的socks的程序源程序,用于socks的代理服务-Linux socks procedure source program, uses in the socks proxy to serve

1
下载
38
浏览
2023-07-04发布

19. Unix 下canny算法,c语言,来自http://www.ltrr.arizona.edu/

Unix 下canny算法,c语言,来自http://www.ltrr.arizona.edu/-Unix under the canny algorithm, c language, from http://www.ltrr.arizona.edu/

1
下载
46
浏览
2023-07-03发布