代码搜索:DSP AD采样
找到约 10,000 项符合「DSP AD采样」的源代码
代码结果 10,000
www.eeworm.com/read/439702/7702614
txt ad采样程序.txt
void AD()
{
//------------------------
ADINS=0x01; //0000 0001, 选择channel
ADMODA=0x01; //0000 0001, 选择转换工作模式:单次转换模式
ADMODB=0x00; //500Khz < ADC CLK < 3.3Mhz,
while(1)
www.eeworm.com/read/138190/13250828
c ad中断采样.c
#define TRUE 1
#define FALSE 0
#define END_OF_INT 0x20
#define N 80
#include
#include
#include
#include
int start,ch,flag;
void interrupt int9();
void ena
www.eeworm.com/read/309617/13667703
txt ad 采样实验.txt
#include "global.c"
void SystemInit();
void Timer1Init();
void KickDog();
void SPI_Init();
void DA_OUT(unsigned CHANNEL,unsigned int RNG,unsigned int SPI_DATA);
void AD_Sample();
void Que
www.eeworm.com/read/339469/12232996
txt ad 采样实验.txt
#include "global.c"
void SystemInit();
void Timer1Init();
void KickDog();
void SPI_Init();
void DA_OUT(unsigned CHANNEL,unsigned int RNG,unsigned int SPI_DATA);
void AD_Sample();
void Que
www.eeworm.com/read/484913/1265031
asm ad采样自检.asm
;***********************************************
;名称:A/D采样自检
;功能:外部中断0完成A/D采样任务,每次采样一个数
;使用:“3”区R0-R7
; 出口参数:AD_BUF开始的2个单元
;*************************************************
AD_TEST:
www.eeworm.com/read/484913/1265055
txt ad采样自检.txt
;***********************************************
;名称:A/D采样自检
;功能:外部中断0完成A/D采样任务,每次采样一个数
;使用:“3”区R0-R7
; 出口参数:AD_BUF开始的2个单元
;*************************************************
AD_TEST:
www.eeworm.com/read/366998/9786082
txt ad采样模块.txt
// A/D采样
module mx7821( clk,
din,
dout,
rd);
input clk;
input [7:0]din;
output [7:0]dout;
output rd;
reg rd;
reg [3:0]cot;
reg [7:0]dout;
wire [3:0]count;
assign count=cot[3:0];
www.eeworm.com/read/483220/6601379
txt ad采样及串口.txt
#include
#define uchar unsigned char
#define uint unsigned int
long result,z;
uchar ADL,ADM,ADH;
//sbit P31 = P3^1;
//sbit P30 = P3^0;
void ADCinit()
{
int decimation=1728;/
www.eeworm.com/read/372004/9525643
doc ad采样提高精度.doc
www.eeworm.com/read/321891/13393663