-
UnixShell4osDesign
Unix shell是unix的命令解释程序,用于让用户以一种友好的方式运行程序和执行命令。
本课程设计要求学生在linux下写一个命令解释程序,实现Ksh最基本的功能。即:允许用
户打入一个可执行的程序的名字以及其命令行参数,执行这个程序。同时实现一部分内部命
令(比如cd,详见要实现的命令),以及输入输出重定向等功能。(Unix shell is unix order to explain procedures to enable users to a friendly manner operational procedures and the enforcement of the order. The courses require students to design the linux under orders to write an interpretation of procedures, Ksh most basic functions. : Allows users to enter an executable program and the name of its command line parameters, the implementation of this procedure. Simultaneously part of the internal commands (such as cd, details to be achieved in order), and redirect input and output functions.)
- 2007-05-15 20:45:30下载
- 积分:1
-
tuxiang-xihua
基于opencv的图像细化的很好的程序,绝对可用(Based on the opencv image thinning a very good program, absolutely free)
- 2013-06-26 19:32:58下载
- 积分:1
-
studentchooseclass
简单的类与对象的内容,实现大学选课系统,实习课代码(Simple content classes and objects, the realization of the University of elective system, training classes code)
- 2008-12-31 09:15:59下载
- 积分:1
-
STM32F407驱动OLED显示DS18B20数字温度
实验器材: 探索者STM32F4开发板 实验目的: 学习单色OLED显示屏的使用 硬件资源: 1,DS0(连接在PF9) 2,ALIENTEK 0.96寸OLED模块(连接IO说明,见oled.h文件) 实验现象: 本实验利用开发板的OLED/CAMERA接口连接ALIENTEK OLED模块,实现OLED模块的显示,下 载成功后,通过把OLED模块插入开发板左下角的OLED/CAMERA模块接口,按下复位之后,就 可以看到OLED模块不停的显示ASCII码和码值。 注意事项: 1,开发板的OLED/CAMERA模块接口比OLED的插针多2个,OLED靠左插即可. 2,例程默认用的8080方式驱动OLED模块,所以OLED模块的BS0,BS1都需要接VCC(默认接的VCC). 一、主要程序代码如下 int main(void){ u8 t=0; short temperature; Stm32_Clock_Init(336,8,2,7);//设置时钟,168Mhz delay_init(168); //延时初始化 uart_init(84,115200); //初始化串口波特率为115200 LED_Init(); //初始化LED OLED_Init(); //初始化OLED DS18B20_Init(); //DS18B20初始化 OLED_ShowString(0,10,"Temperature:",12); OLED_ShowString(85,10,".",12); OLED_ShowString(98,10,"C",12); OLED_Refresh_Gram();//更新显示到OLED while(1) { if(t%10==0)//每100ms读取一次 { temperature=DS18B20_Get_Temp(); OLED_ShowNum(72,10,temperature/10,2,12); //显示正数部分 OLED_ShowNum(89,10,temperature%10,1,12); //显示小数部分 OLED_Refresh_Gram();//更新显示到OLED } delay_ms(10); t ; if(t==20) { t=0; LED0=!LED0; } }}
- 2020-12-07下载
- 积分:1
-
在C#中使用控件DataGridView实现数据库增删改查
在C#中使用控件DataGridView实现数据库增删改查详细解释和源码
- 2022-02-15 16:20:10下载
- 积分:1
-
a simple application of neural nets in vs
a simple application of neural nets in vs
- 2022-03-18 07:58:41下载
- 积分:1
-
百度云消息推送网站测试C#
根据官方示例,根据网络资料查找,通过前辈们的源代码进行整理,编写了一个支持百度云推送的网站,亲测能正常使用,虽然在过程中会有消息推送的延迟,这是手机端的官方demo的问题,大部分时间是可以正常推送的,不能推送的过程中可以重新安装demo
- 2023-04-09 02:50:03下载
- 积分:1
-
snmpCSharp
C#版snmp网络管理软件,具备网络编程源码,SNMP源码(C# version of SNMP network management software, network programming source code, SNMP source code
)
- 2013-11-23 21:57:38下载
- 积分:1
-
v2normalkalman
自己编写的2维动态模型,运用卡尔曼滤波仿真。(I have written two-dimensional dynamic model, the use of Kalman filter simulation.)
- 2011-09-07 10:43:59下载
- 积分:1
-
AVR
步进电机控制程序。通过键盘控制正传反转。。(Stepper motor control program. The Story of the keyboard control inversion. .)
- 2012-01-08 12:03:31下载
- 积分:1