代码搜索:时钟提取
找到约 10,000 项符合「时钟提取」的源代码
代码结果 10,000
www.eeworm.com/read/342097/12041487
c i2c.c
//#include "I2C.h"
#include // 引用标准库的头文件
#include
#define uchar unsigned char
#define uint unsigned int
sbit SDA = P3^2; // 串行数据
sbit SCL = P3^3; // 串行时钟
www.eeworm.com/read/153078/12061565
c sm2b.c
#include
#include
//****************系统时钟初始化****************//////
void SYSCLK_Init(void)
{
int i;
//启用外部振荡器
OSCXCN=0x67;
//等待振荡器起
for(i=0;i
www.eeworm.com/read/255027/12105505
vhd dac2adc.vhd
LIBRARY IEEE;
USE IEEE.STD_LOGIC_1164.ALL;
USE IEEE.STD_LOGIC_UNSIGNED.ALL;
ENTITY DAC2ADC IS
PORT ( CLK : IN STD_LOGIC; --计数器时钟
LM311 : IN STD_LOGIC; --LM311输出,由PIO37口进入FPG
www.eeworm.com/read/151962/12157610
v fdiv28_31.v
//=====对输入时钟28或31分频,如1d->1mon(月)=====//
// 采用if-else语句,比用case语句简洁!
module fdiv28_31(clki,clr,month,leapyear,clko,cnt);
input clki,clr,leapyear; // leapyear是闰年信号
i
www.eeworm.com/read/150283/12300771
asm clock.asm
; 时钟程序
;-------------------20H------------------------
ENTER BIT 00H ;确认键按下标志位
SET_BIT BIT 01H ;设置键按下标志位
KEY_MOVE BIT 02H ;移动键按下标志位
INC_A BIT 0
www.eeworm.com/read/338376/12311468
bak df_timera.c.bak
/*****************************************************************************\
文件名:df_timera.c
描述:用于MSP430F149。
定时器A定时,产生中断,使主程序退出低功耗模式。
使用TACTL0
工作模式:增计数模式
时钟源:ACLK为32.768kHz
版本:1.0
www.eeworm.com/read/149944/12330071
c delay.c
#include
#include
//8MHz时钟下
void delay_1ms(void)//1ms延时函数
{
unsigned int i;
asm("nop");
for (i=0;i
www.eeworm.com/read/337884/12334491
bak cpu_def.bak
//#define USE_PIC16F877 1
#define USE_PIC16F73 1
#define MCLK 8000000 //定义时钟频率
#if defined (USE_PIC16F877)
#include "..\demo\16F877A.h"
#device *=16
#elif defined (USE_PIC16F73)
#inc
www.eeworm.com/read/337884/12334625
h cpu_def.h
//#define USE_PIC16F877 1
#define USE_PIC16F73 1
#define MCLK 11059200 //定义时钟频率
#if defined (USE_PIC16F877)
#include "..\demo\16F877A.h"
#device *=16
#elif defined (USE_PIC16F73)
#in