资源简介
相当不错的源码,希望对大家有用,里面有CCD摄像头的驱动及应用程序,大家可以参考其设计模式
代码片段和文件信息
/****************************************Copyright (c)**************************************************
** Guangzou ZLG-MCU Development Co.LTD.
** graduate school
** http://www.zlgmcu.com
**
**--------------File Info-------------------------------------------------------------------------------
** File name: main.c
** Last modified Date: 2004-09-16
** Last Version: 1.0
** Descriptions: The main() function example template
**
**------------------------------------------------------------------------------------------------------
** Created by: Chenmingji
** Created date: 2004-09-16
** Version: 1.0
** Descriptions: The original version
**
**------------------------------------------------------------------------------------------------------
** Modified by: Chenxibing
** Modified date: 2005-01-20
** Version:
** Descriptions: 外部中断唤醒掉电CPU,同时产生中断。
**
********************************************************************************************************/
#include “config.h“
//#include “counter.h“
#include “Exint.h“
//#include “pwm.h“
extern char flag;
extern int tuxiang[261];
/*********************************************************************************************************
** 函数名称 :main()
** 函数功能 :演示外部中断唤醒掉电的CPU
** 入口参数 :无。
** 出口参数 :无。
*********************************************************************************************************
*/
int main (void)
{ int i;
// counterinit ();
ioinit();
Exintinit ();
UART1_Init ();
// pwminit ();
IRQEnable(); // 使能IRQ中断
//UART1_SendByte (0x05);
while (1)
{
if(flag)
{
for (i=0;i<261;i++)
UART1_SendByte ((uint8)tuxiang[i]);
flag=FALSE;
}
}
return (0);
}
/*********************************************************************************************************
** End Of File
********************************************************************************************************/
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3789 2007-10-19 20:29 lpcccdshiyan1\app\comu\comu1.c
文件 1710 2007-09-25 09:35 lpcccdshiyan1\app\counter\counter.c
文件 1797 2007-09-25 09:35 lpcccdshiyan1\app\counter\counter.h
文件 5083 2007-10-20 12:08 lpcccdshiyan1\app\exint\exint.c
文件 1880 2007-10-19 11:03 lpcccdshiyan1\app\exint\exint.h
文件 2031 2007-10-19 11:02 lpcccdshiyan1\app\io\io.c
文件 1785 2007-10-19 11:03 lpcccdshiyan1\app\io\io.h
文件 2151 2007-10-20 12:08 lpcccdshiyan1\app\main.c
文件 1885 2007-09-25 09:36 lpcccdshiyan1\app\PWM\pwm.c
文件 1785 2007-09-25 09:36 lpcccdshiyan1\app\PWM\pwm.h
文件 209615 2007-10-20 09:15 lpcccdshiyan1\lpcccdshiyan1.mcp
文件 3462 2007-10-20 09:15 lpcccdshiyan1\lpcccdshiyan1_Data\CWSettingsWindows.stg
文件 54547 2007-10-20 12:08 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInFLASH\TargetDataWindows.tdt
文件 22800 2007-10-20 12:08 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\lpcccdshiyan1.axf
文件 30124 2007-10-19 20:29 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 28384 2007-10-19 09:44 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 30208 2007-10-20 12:08 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 28284 2007-10-19 11:04 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 1266 2007-10-19 09:44 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 30512 2007-10-20 12:08 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 28356 2007-10-19 09:44 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 3607 2007-10-19 09:44 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 35496 2007-10-19 09:44 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\ob
文件 81087 2007-10-20 12:08 lpcccdshiyan1\lpcccdshiyan1_Data\DebugInRAM\TargetDataWindows.tdt
文件 55890 2007-10-20 12:08 lpcccdshiyan1\lpcccdshiyan1_Data\RelInFLASH\TargetDataWindows.tdt
文件 1392 2005-01-12 16:50 lpcccdshiyan1\scf\mem_a.scf
文件 1394 2005-01-12 16:56 lpcccdshiyan1\scf\mem_b.scf
文件 1387 2005-01-12 16:51 lpcccdshiyan1\scf\mem_c.scf
文件 4018 2004-09-24 11:03 lpcccdshiyan1\target\config.h
文件 3349 2004-10-09 10:47 lpcccdshiyan1\target\IRQ.s
............此处省略21个文件信息
评论
共有 条评论