Thông báo

Collapse
No announcement yet.

ADC hiện thị lên LCD trong Dspic30f4011

Collapse
X
 
  • Lọc
  • Giờ
  • Show
Clear All
new posts

  • ADC hiện thị lên LCD trong Dspic30f4011

    Tôi muốn làm đo điện áp hiện thị lên LCD. Toi phải dùng bộ biến đổi ADC 10 bit trong Dspic những mà Khi lập trình thì ADC ko chuyển đổi
    Code:
    #include <p30f4011.h>
    #include <string.h> // Thu vien chuoi ki tu chuoi ki tu
    #include <stdio.h>
    #include <libpic30.h>
    #include "LCD.h"
    
    unsigned int ADCValue=0;
    //------------------------------------ConFig cho DsPic-------------------
    		_FOSC(CSW_FSCM_OFF & FRC_PLL4);
    		_FWDT(WDT_OFF);
    		_FBORPOR(PBOR_OFF & MCLR_EN & PWMxL_ACT_HI & PWMxH_ACT_HI);
    		_FGS(CODE_PROT_OFF);
    //------------------------------------------------   -----------------------
    //Chuong trinh con khoi tao module chuyen doi A/D, doc ngo vao AN0
    void Init_ADC10(void) {
    	ADPCFG = 0xFEFF;		//Cac chan khac la digital, chan AN8/RB8 la analog
    
    	ADCON1 = 0x0040;		//Timer 3 cham dut lay mau va kich hoat
    							//viec chuyen doi A/D
    	ADCON2 = 0;
    	ADCHS =  0x0008 ;				//Kenh 0 doc tin hieu giua AN8 va AVss
    	ADCSSL = 0;				//Khong quet cac ngo vao
    	ADCON3 = 0x0103;		//Dung 1 TAD cho lay mau, dung clock he thong,
    	TMR3 = 0;				//Xoa thanh ghi dem cua Timer 3
    	PR3 = 0x03E8;			//Nguong delay cho TMR3 la khoang 1 ms
    	T2CON = 0x8010;			//Prescale = 1:8, bat cho TMR3 chay
    
    	_ADIF = 0;				//Xoa co ngat ADC
    	_ADIE = 1;				//Cho phep ngat ADC
    	_ADON = 1;				//Bat module ADC
    	_ASAM = 1;				//Khoi dong che do tu dong lay mau
    }
    void __attribute__((__interrupt__)) _ADCInterrupt(void)
    {
    	ADCValue = &ADCBUF0 ;		
    	_ADIF = 0;
    	_T3IF=0;
    }
    
    
    //unsigned int number=10;
    int main()
    	{
    		LATB=1;
    		TRISBbits.TRISB0=1;
    		Init_TMR1();
            ADPCFG = 0xFFFF;
    		Init_LCD();
    		Init_ADC10();
    	while(1)
    		{
    			
    			LCD_Position(1,1);	
    			LCD_WriteString("Dien ap");
    			Delay_ms(1);
    			LCD_Position(2,0);
    			LCD_WriteNumber(ADCValue);		
    
    			}
    }
    Hàm hiện thị LCD
    Code:
    #include <p30f4011.h>
    #include <string.h>
    #include <stdio.h>
    #include <libpic30.h>
    #include "LCD.h"
    unsigned char time_out;
    void _ISR _T1Interrupt(void)
    	{
    		_T1IF = 0 ; // xoa co ngat
    		time_out = 1;
    	}
    void Init_TMR1(void)  // Tao timer 1 la 1ms
    	{
    		TMR1=0; // xoa dem trong timer
    		PR1 = 125;
    		_T1IF = 0;
    		T1CON = 0x0020; // 1:64
    	    _T1IE=1; // cho phep ngat timer
    	}
    void Delay_ms(unsigned int n)
    	{
        
    		PR1=n*ms_count;
    		time_out=0;
    		T1CONbits.TON=1; // bat timer 1
    		while(time_out==0);
    		T1CONbits.TON=0;
    		TMR1 = 0;
    	}
    void Init_Port_LCD(void)
    	{
    		LCD_data &= 0xFFF0;
    		LCD_tris = 0xFFF0; // Chan du lieu LCD la ngo ra
    		EN = 0;
    		EN_tris = 0;	
    		RW = 0;
    		RW_tris = 0;
    		RS = 0;
    	    RS_tris = 0;
    	}
    
    void Init_LCD(void)
    	{
    		Init_Port_LCD();
    		LCD_cmd(LCD_chedo);
    		Delay_ms(1);
    		LCD_cmd(LCD_off);
    		Delay_ms(1);
    		LCD_cmd(LCD_normal);
    		Delay_ms(1);
    		LCD_cmd(LCD_on_blink);
    		Delay_ms(1);
    		LCD_cmd(LCD_clear);
    		Delay_ms(1);
    	}
    void LCD_cmd(unsigned char cmd)
    	{
    		unsigned temp1,i;
    		RW = 0;
    		RS=0;
    		temp1 = LCD_data & 0xFFF0;
    		LCD_data = temp1|(cmd>>4); // Xuat 4 bit cao
    		EN = 1;
    		for(i=0;i<1;i++);
    		EN=0;
    		temp1 = LCD_data & 0xFFF0;
    		LCD_data = temp1|(cmd & 0x0F);
    		EN = 1;
    		for(i=0;i<1;i++);
    		EN = 0;
    	}
    void LCD_export(unsigned char export)
    	{
    		unsigned temp2,i1;
    		RW=0;
    		RS=1;
    		temp2 = LCD_data & 0xFFF0;
    		LCD_data = temp2|(export>>4); // Xuat 4 bit cao
    		EN = 1;
    		for(i1=0;i1<1;i1++);
    		EN=0;
    		temp2 = LCD_data & 0xFFF0;
    		LCD_data = temp2|(export&0x0F);
    		EN = 1;
    		for(i1=0;i1<1;i1++);
    		EN = 0;
    	}
    
    void LCD_Position(char x, char y)
    	{
    				if(x==1)
    			{
    				LCD_cmd(LCD_homeL1+y-1);
    				Delay_ms(10);
    			}
    		else
    			{
    				LCD_cmd(LCD_homeL2+y-1);
    				Delay_ms(10);
    			}
    	return;
    	}
    void LCD_WriteString(const char *str)
    {
    
    	char ps;
    	ps = *str;		
    	while(ps>0)		
    	{
    		str++;			
    		if (ps==0) break;
    		Delay_ms(1);
    		LCD_export(ps);		
        	ps = *str;		
    	}
    }
    void LCD_WriteNumber(unsigned int number) // Hien thi so tren LCD
    	{
         	char wnumber[40];		
        	sprintf(wnumber,"%d",number);
    	    LCD_WriteString(wnumber);
    		Delay_ms(10);;
    	}
    Tôi sử 2 ngắt của Timer và ADC . Tôi nghĩ là ngắt của ADC ko hoạt động. Có mức ưu tiên ngắt gì ko ở đây? Mong các pác giúp!

  • #2
    câu lênh: ADCValue = &ADCBUF0 ; là sao vậy bạn?
    |

    Comment

    Về tác giả

    Collapse

    hang1988 Tìm hiểu thêm về hang1988

    Bài viết mới nhất

    Collapse

    Đang tải...
    X