代码搜索:pid控制
找到约 10,000 项符合「pid控制」的源代码
代码结果 10,000
www.eeworm.com/read/292344/8360552
txt 第一届飞思卡尔智能车竞赛华中科技大学的程序清单.txt
***********************************************************************************
* 系统初始化函数
*
* 程序描述: 初始化了系统时钟,FLASH 和 EEPRO的工作频率,PWM输出口,定时器,以及PID算法中的有关参数
*
* 注意: 这个函数调用了 Init_PW
www.eeworm.com/read/192624/8371954
c arithmetic.c
#include "BaseInc.h"
#include "math.h"
/*========================================================//
函数:PIDInit
功能:PID参数初始化
作者:
参数:
返回值:
www.eeworm.com/read/192624/8372069
c arithmetic.c
#include "BaseInc.h"
#include "math.h"
/*========================================================//
函数:PIDInit
功能:PID参数初始化
作者:
参数:
返回值:
www.eeworm.com/read/192259/8391070
c tellwait2.c
#include
#include "ourhdr.h"
static void charatatime(char *);
int
main(void)
{
pid_t pid;
TELL_WAIT();
if ( (pid = fork()) < 0)
err_sys("fork error");
else if (pi
www.eeworm.com/read/192259/8391077
c tellwait1.c
#include
#include "ourhdr.h"
static void charatatime(char *);
int
main(void)
{
pid_t pid;
if ( (pid = fork()) < 0)
err_sys("fork error");
else if (pid == 0) {
char
www.eeworm.com/read/192259/8391080
c vfork1.c
#include
#include "ourhdr.h"
int glob = 6; /* external variable in initialized data */
int
main(void)
{
int var; /* automatic variable on the stack */
pid_t pid;
var
www.eeworm.com/read/192259/8391092
c system.c
#include
#include
#include
#include
int
system(const char *cmdstring) /* version without signal handling */
{
pid_t pid;
int status;
if
www.eeworm.com/read/291535/8411489
txt unix系统开发-系统调用-进程间通信.txt
UNIX系统开发-系统调用-进程间通信
基本上所有的系统调用成功时返回0或正数,失败时返回负值。
进程的用户标志号管理
系统调用的格式
#include
unsigned short getuid()
unsigned short getgid()
unsigned short geteuid()
unsigned short getegid()
int
www.eeworm.com/read/391289/8412116
inf secusb2.inf
; Installation inf for the SEC SOC S3C2443X USB 2.0 Bulk IO Test B/D
[Version]
Signature="$CHICAGO$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
provider=%ProviderName%
DriverVe
www.eeworm.com/read/189685/8458852
txt shell试验内容.txt
要求
实现简单的Shell,至少能处理四条命令
cd :改变进程当前路径
pwd :查看进程当前路径
pid:查看当前进程号
logout :退出shell
设计实现更完整的Shell(选做,按完成程度可适当加分)
难度系数:1.3