44binit.s ----- 初始化中断、存储器、堆栈等

源代码在线查看: main.c

软件大小: 899 K
上传用户: invill
关键词: binit 44 初始化 中断
下载地址: 免注册下载 普通下载 VIP

相关代码

				/****************************************************************************
				【文  件  名  称】44Btest.c
				【功  能  描  述】三星S3C44B0X板demo程序代码
				【程  序  版  本】2.0
				【创建人及创建日期】龚俊//2003-07-02 15:27
				【修改人及修改日期】龚俊//2004-2-12 9:18
				****************************************************************************/
				
				//***************************************************************************
				#include 
				#include 
				
				#include "..\inc\def.h"
				#include "..\inc\option.h"
				#include "..\inc\44b.h"
				#include "..\inc\44blib.h"
				
				/****************************************************************************
				【功能说明】模数转换初始化
				****************************************************************************/
				void ADC_Init(void)
				{
					rCLKCON = rCLKCON | (1					rADCCON = 0x1|(0					Delay(100);		//延时若干个100us
					rADCPSR = 10;		//ADC转换频率为:(int)(MCLK/(2*(rADCPSR+1))/16)
				
				    Uart_Printf("ADC转换频率 = %d(Hz)\n\n",(int)(MCLK/(2.*(10+1.))/16.) );
				}
				//***************************************************************************
				
				/****************************************************************************
				【功能说明】ADC某一通道进行转换,返回转换的数据
				****************************************************************************/
				unsigned short Read_Adc(unsigned char ch)
				{
					int i;
				    static int prevCh=-1;
				
				    if(prevCh!=ch)
				    {
						rADCCON = 0x1|(ch				   		for(i=0;i					}
					
				    rADCCON=0x1|(ch					while(rADCCON & 0x1);	//避免标志FLAG错误
				    while(!(rADCCON & 0x40));		//等待AD转换结束
					for(i = 0; i < rADCPSR; i++);		//避免第二次标志FLAG错误
				    prevCh=ch;
					return rADCDAT;		//返回AD转换值
				}
				//***************************************************************************
				
				/****************************************************************************
				【功能说明】系统主函数
				****************************************************************************/
				void Main(void)
				{
				    int a0=0,a1=0,a2=0,a3=0,a4=0,a5=0,a6=0,a7=0;
					
					rNCACHBE0 = ((Non_Cache_End>>12)12);
				    //在上面的数据区域不使用高速缓存
				
				    rSYSCFG = CACHECFG;    //8K字节cache,写缓冲使能,data abort使能
				
				    Port_Init();		//IO口初始化
				
					Uart_Select( 0 ) ;		//选择串口0
					Uart_Init( 32000000, 57600 ) ;		
						//串口初始化,波特率为57600(系统主频为32MHz)
						
				   	Uart_Printf( "\n\n\t优龙科技\n" ) ;
				   	Uart_Printf( "Http://www.ucdragon.com\n\n" ) ;
				
				   	Uart_Printf( "ST44B0X模数转换器(ADC)测试!\n\n" ) ;
				   	
				   	ADC_Init() ;		//模数转换初始化
				    
				    while(1)
				    {
						a0 = Read_Adc(0);		//ADC某一通道进行转换,返回转换的数据
						a1 = Read_Adc(1);		//ADC某一通道进行转换,返回转换的数据
						a2 = Read_Adc(2);		//ADC某一通道进行转换,返回转换的数据
						a3 = Read_Adc(3);		//ADC某一通道进行转换,返回转换的数据
						a4 = Read_Adc(4);		//ADC某一通道进行转换,返回转换的数据
						a5 = Read_Adc(5);		//ADC某一通道进行转换,返回转换的数据
						a6 = Read_Adc(6);		//ADC某一通道进行转换,返回转换的数据
						a7 = Read_Adc(7);		//ADC某一通道进行转换,返回转换的数据
						Uart_Printf("ADC 0-7通道输出依次为:%4d %4d %4d %4d %4d (%4d) %4d %4d\n",a0,a1,a2,a3,a4,a5,a6,a7);
						
						Delay(2000);		//延时
				    }
				}
				//***************************************************************************
							

相关资源