代码搜索:Terminated
找到约 1,727 项符合「Terminated」的源代码
代码结果 1,727
www.eeworm.com/read/103960/15715758
c request.c
#include "opend.h"
#include
void
request(char *buf, int nread, int fd)
{
int newfd;
if (buf[nread-1] != 0) {
sprintf(errmsg, "request not null terminated: %*.*s\n",
nread, nr
www.eeworm.com/read/101167/15842824
c ser_bb.c
// SER_BB.C
//
// Illustrates RS232 communication using bit-bang.
//
// Program listens for a string terminated with 0x0d from PC Com Port and
// then sends the string to the PC Com Port.
//
//
www.eeworm.com/read/100585/15870769
c request.c
#include "opend.h"
#include
void
request(char *buf, int nread, int fd)
{
int newfd;
if (buf[nread-1] != 0) {
sprintf(errmsg, "request not null terminated: %*.*s\n",
nread, nr
www.eeworm.com/read/100359/15876231
c rdlib.c
#include
#include
#include
#include "rdoff.h"
#include "rdlib.h"
/*
* format of rdoff library files:
* repeat
* null terminated module name (max 255 ch
www.eeworm.com/read/279387/10442119
sif e50.sif
#example 5: a 3-D transmission line
# To determine the Zin when the load side is terminated by
# a 50 ohm resistor
unit 1 mm
# the board is 60mm * 54mm * 2 mm
boundary 0 0 0 6
www.eeworm.com/read/458661/7291850
m pulsemovie.m
% pulsemovie.m - movie of step or pulse propagating along a terminated line
% based on Example 9.15.1
%
% S. J. Orfanidis - 2002 - www.ece.rutgers.edu/~orfanidi/ewa
clear all;
d = 1; c=1; T =
www.eeworm.com/read/315751/13536812
m pulsemovie.m
% pulsemovie.m - movie of step or pulse propagating along a terminated line
% based on Example 9.15.1
%
% S. J. Orfanidis - 2002 - www.ece.rutgers.edu/~orfanidi/ewa
clear all;
d = 1; c=1; T =
www.eeworm.com/read/303512/13813877
m pulsemovie.m
% pulsemovie.m - movie of step or pulse propagating along a terminated line
% based on Example 9.15.1
%
% S. J. Orfanidis - 2002 - www.ece.rutgers.edu/~orfanidi/ewa
clear all;
d = 1; c=1; T =
www.eeworm.com/read/232141/14207583
m standing_wave.m
% plotting voltage standing waves on a transmission line
% terminated with a complex load ZL
clear,clf
L=2.5; % line length
dz=0.02;
freq=.1e9; % frequency
wavel=3e8/freq;
alpha=0; % atte
www.eeworm.com/read/123857/14608591
c readcrlf.c
#include "../etcp.h"
/* readcrlf - read a CR/LF terminated line */
int readcrlf( SOCKET s, char *buf, size_t len )
{
char *bufx = buf;
int rc;
char c;
char lastc = 0;
while ( len > 0 )
{
if