代码搜索:PID
找到约 10,000 项符合「PID」的源代码
代码结果 10,000
www.eeworm.com/read/440621/7685013
txt beria 0.07 - oep finder.txt
msgyn "IGNORE ALL EXCEPTIONS and make sure that NO BREAKPOINT IS LEFT! Then (this is the most important) set OllyDbg to be just-in-time debugger (instead DrWatson) and set to 'Attach without confirmat
www.eeworm.com/read/440621/7685230
txt beria 0.07 - oep finder + detach process.txt
msgyn "IGNORE ALL EXCEPTIONS and make sure that NO BREAKPOINT IS LEFT! Then (this is the most important) set OllyDbg to be just-in-time debugger (instead DrWatson) and set to 'Attach without confirmat
www.eeworm.com/read/439882/7697586
c regs.c
/*
* regs.c - architected registers state routines
*
* This file is an adaptation of the software in the SimpleScalar tool suite
* originally written by Todd M. Austin for the Multiscalar Research
www.eeworm.com/read/439850/7700790
m chap2_8f.m
%PID Controler Based on Ziegler-Nichols
clear all;
close all;
ts=0.25;
sys=tf(1,[10,2,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
axis('square'),zgrid('new');
figure(1);
rloc
www.eeworm.com/read/439707/7702583
c daemon_sample.c
#include
#include
int main(int argc,char *argv[])
{
pid_t child;
child=fork();
if(child==0)
{
setsid();
umask(0);
chdir("/tmp");
if(fork()==0)
{
while(1)
www.eeworm.com/read/439680/7703202
m chap2_8f.m
%PID Controler Based on Ziegler-Nichols
clear all;
close all;
ts=0.25;
sys=tf(1,[10,2,0]);
dsys=c2d(sys,ts,'z');
[num,den]=tfdata(dsys,'v');
axis('square'),zgrid('new');
figure(1);
rloc
www.eeworm.com/read/439416/7709850
pas unadspdlib.pas
(*
DSPDLib
----------------------------------------------
This source code cannot be used without
proper license granted to you as a private
person or an entity by the Lake of So
www.eeworm.com/read/438909/7724668
m writepacket.m
function WritePacket(gps, id, data, type)
% WritePacket Write the a packet with the given id and data
% Since pid_dle_byte is used to delimit packet boundaries, if a data, size
% or checksum value
www.eeworm.com/read/438909/7724674
m opengps.m
function [gps, pid, version, text, protocols] = OpenGPS(port)
global pid_product_rqst
% Initialize global constants
constants;
%try
gps = serial(port);
www.eeworm.com/read/438909/7724677
m sendbeginpacket.m
function SendBeginPacket(gps, count)
% SENDBEGINPACKET Send the standard begin command packet
WritePacketHeader(gps, pid_records, 2)
fwrite(gps, count, 'int16');
WritePacketTerminator(gps);