代码搜索:输出可调
找到约 10,000 项符合「输出可调」的源代码
代码结果 10,000
www.eeworm.com/read/206562/7129675
m timesn.m
%*************************************************
%S函数timesn.m,其输出是输入的n倍
%*************************************************
function [sys,x0,str,ts]=timesn(t,x,u,flag,n)
switch flag,
case 0
www.eeworm.com/read/461386/7228187
c pcapwm8.c
/***************************************************************
功能:实现用PCA在P0.0输出8位PWM信号,可用示波器观察占空比变化
作者:ZDP
时间:2005-11-30
版本:V1.0
***************************************************************/
www.eeworm.com/read/459103/7282619
m timesn.m
%*************************************************
%S函数timesn.m,其输出是输入的n倍
%*************************************************
function [sys,x0,str,ts]=timesn(t,x,u,flag,n)
switch flag,
case 0
www.eeworm.com/read/454737/7384201
v uart_transmitter.v
module uart_transmitter(
Serial_out, //总线输出
Data_Bus, //总线输入数据
Byte_ready, //
Load_XMT_datareg,
T_byte,
clk,
Rst_n
www.eeworm.com/read/453588/7416657
c spi.c
//-----------------------函数声明,变量定义--------------------------------------------------------
#include
#include
sbit SCK=P1^0; // 将p1.0口模拟时钟输出
sbit MOSI
www.eeworm.com/read/446732/7569589
txt 例11.9.txt
例11.9编写一个输出链表的函数print。
void print(struct student *head)
{struct student*p;
printf("\nNow,These %d records are:\n",n);
p=head;
if(head!=NULL)
www.eeworm.com/read/441573/7668655
c led.c
#include
#include "ad9851.h"
void main()
{
ad9851_reset() ;
write_freq(1000000); //频率输出1M Hz
while(1)
{
}
}
www.eeworm.com/read/438537/7729975
txt myccode.txt
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
二维数组的输出:
#include
#include
void main()
{
int a[2][3];
printf("演示:\n");
for(int i=0;i
www.eeworm.com/read/437110/7755182
h convolve.h
void Convolve(
Word16 *Input, // 原始输入数据
Word16 *Impulse, // 冲击响应
Word16 *Output, // 卷积输出结果
Word16 length // 卷积运算长度
);