代码搜索:main.c
找到约 10,000 项符合「main.c」的源代码
代码结果 10,000
www.eeworm.com/read/320475/13426443
c main.c
/* 包含文件 */
#include "def.h"
#include "2410lib.h"
#include "option.h"
#include "2410addr.h"
#include "interrupt.h"
/********************************************************************
// Func
www.eeworm.com/read/320475/13426446
c main.c
/* 包含文件 */
#include "def.h"
#include "2410lib.h"
#include "option.h"
#include "2410addr.h"
#include "interrupt.h"
extern unsigned char seg7table[];
/* 表示日期、时间的数据结构 */
typedef struct ST_DAT
www.eeworm.com/read/320475/13426448
c main.c
/* 包含文件 */
#include "def.h"
#include "2410lib.h"
#include "option.h"
#include "2410addr.h"
#include "interrupt.h"
/* 函数声明 */
void test_pwm();
/*********************************************
www.eeworm.com/read/320475/13426449
c main.c
/* 包含文件 */
#include "def.h"
#include "2410lib.h"
#include "option.h"
#include "2410addr.h"
#include "interrupt.h"
#include "lcdlib.h"
void Lcd_Disp_Char(void);
void Lcd_Disp_Grap(void);
/**
www.eeworm.com/read/320412/13427423
c main.c
/****************************************************************************
* *
* File: MAIN.C
www.eeworm.com/read/320407/13427445
c main.c
#include
void delay_ms(unsigned int t) //延时函数
{
int m;
while(t--)
{
m=150;
while(m--);
}
}
void main( void )
{
// Stop watchdog time
www.eeworm.com/read/320390/13427653
c main.c
#include "..\startup\44b.h"
#include "..\inc\44blib.h"
#include "..\startup\option.h"
#include "..\inc\def.h"
#include "..\ucos\includes.h"
extern void OSSchedLock(void);
#define IRQ_VECTOR_
www.eeworm.com/read/320358/13428052
c main.c
/** main.c
*
* Written by Sebastian Stolzenberg email:stolzi@sebastian-stolzenberg.de
* Version 1.0 04 Feb 2003
*/
#ifndef __KERNEL__
# define __KERNEL__
#endif
#ifndef MODULE
# define MODULE
#e
www.eeworm.com/read/320318/13428575
c main.c
/*
内部1 M晶振。
定时器实险,周期信号驱动无源蜂鸣器。
程序中实现单一频率的周期性提示音。
程序采用单任务方式,软件延时。
*/
#include "iom16v.h"
/*延时函数*/
void delay_ms(unsigned char i) {
unsigned char a, b;
for (a = 1; a < i; a++) {
for (
www.eeworm.com/read/320314/13428603
c main.c
/*
实验七:
定时器T1中断实验。
1、定时器中断实验。定时器产生10mS周期中断,通过计数让PB1电平产生周期变化。
2、内部1 M晶振。
3、进行此实验请插上JP1的所有8个短路块,JP7(LED_EN)短路块。
AVR mega16学习板
www.iccavr.com
2006-04-03
*/
#include "iom16v.h"
#inc