Pic Dosya Büyük Hatası

Başlatan Eolos, 04 Haziran 2016, 23:21:03

Eolos

Öncelike herkese merhabalar.

Yabancı bir sitede voltampermetre buldum, proteusta çizdim falan hex dosyasını hazırladım simülasyona soktum tıkır tıkır çalışıyor. Dedim bari burda kalmasın elde görünür birşey olsun.

PIC16F877A'yı pickit2'ye taktım, hex dosyasını yüklemek istedim ama  Hex dosyasının büyük olduğuna dair uyarı alıyorum. Yaz dediğimde ise hata vermeden yazıyor, pcbde yerine monte ediyorum, kontrast ayarını da yapıyorum ama LCD'de meşhur 1. satır kareleri hatasından başka birşey göremiyorum :)

Muhtemelen hata pice hex'i düzgün atamamamdan kaynaklanıyor diye düşünüyorum, sizce bunun sebebi nedir ? Bu uyarıyı neden verir?

pcb'yi, pic pinlerini ve lcd pinlerini defalarca kontrol ettim.  Kod öyle uzun birşey de değil ama olmayınca olmuyor.

Kaynak Kod

//Conexiuni LCD
sbit LCD_RS at RB7_bit;
sbit LCD_EN at RB6_bit;
sbit LCD_D4 at RB5_bit;
sbit LCD_D5 at RB4_bit;
sbit LCD_D6 at RB3_bit;
sbit LCD_D7 at RB2_bit;

sbit LCD_RS_Direction at TRISB7_bit;
sbit LCD_EN_Direction at TRISB6_bit;
sbit LCD_D4_Direction at TRISB5_bit;
sbit LCD_D5_Direction at TRISB4_bit;
sbit LCD_D6_Direction at TRISB3_bit;
sbit LCD_D7_Direction at TRISB2_bit;

//Declarare variabile
unsigned char ch, ADCx;
unsigned int Tensiune, Curent;
unsigned long V, A, Pw;

//Functie principala
void main() {
     INTCON = 0;                           
     TRISA = 0x03;                         
TRISC = 0xE7;                   
     PORTC = 0;                       


     Lcd_Init();                             
     Lcd_Cmd(_LCD_CURSOR_OFF);               
     Lcd_Cmd(_LCD_CLEAR);                   
     Delay_ms(600);                         
     Lcd_Out(1,5,"AAAAAA");         
     Lcd_Out(2,2,"BBBBBB");               
     Delay_ms(1200);
     Lcd_Cmd(_LCD_CLEAR);                   
     Lcd_Out(1,4,"AAAAAAA");       
     Lcd_Out(2,4,"BBBBBBB");                 
     Delay_ms(2000);
     Lcd_Cmd(_LCD_CLEAR);

      while (1) {
            //Achizitie ADC
            Tensiune = 0;
            Curent = 0;
            for (ADCx=0; ADCx<10; ADCx++) {
            Tensiune += ADC_Read(0);         
            Curent += ADC_Read(1);     
            Delay_ms(10);
            }

            //Tensiune
            Tensiune = Tensiune/ADCx;       
            V = (long)Tensiune*1000;         
            V = V/1023;                     
            ch = V/1000;                     
            Lcd_Chr(1,1,48+ch);             
            ch = (V/100) % 10;               
            Lcd_Chr_CP(48+ch);               
            ch = (V/10) % 10;               
            Lcd_Chr_CP(48+ch);               
            Lcd_Chr_CP('.');                 
            ch = (V/1) % 10;                 
            Lcd_Chr_CP(48+ch);
            ch = V % 10;                     
            Lcd_Chr_CP(48+ch);
            LCD_Chr_CP('V');                 
            Delay_ms(10);

            //Curent
            Curent = Curent/ADCx;           
            A = (long)Curent*5000;           
            A = A/1023;                     
            ch = A/1000;                     
            Lcd_Chr(1,9,48+ch);             
            ch = (A/100) % 10;               
            Lcd_Chr_CP(48+ch);               
            Lcd_Chr_CP('.');
            ch = (A/10) %10;                 
            Lcd_Chr_CP(48+ch);               
            ch = A % 10;                     
            Lcd_Chr_CP(48+ch);
            Lcd_Chr_CP('A');                 
            Delay_ms(10);

            //Putere
            Pw = V*A/1000;                   
            ch = Pw/1000;                   
            Lcd_Chr(2,1,48+ch);             
            ch = (Pw/100) % 10;             
            Lcd_Chr_CP(48+ch);
            ch = (Pw/10) %10;               
            Lcd_Chr_CP(48+ch);
            ch = Pw % 10;                   
            Lcd_Chr_CP(48+ch);
            Lcd_Chr_CP('W');                 
            Delay_ms(10);
      }
}



ete

Bu program 877A için çok büyük değil. Aktarmada bir hata olsa gerek.
Link verirsen orjinal programa bakabiliriz. Değilse bu dosyayı derlemek lazım. Hangi C de yazıldığını ben anlamadım.
Ete

Eolos

Sorunu çözdüm sayın Ete. Kod sağlam çalışıyor ama yine de büyük hatası veriyor, verify yaptığımda ise kodun tamamını atıyor ve sıkıntısız çalışıyor. Hex dosyası malesef yok açık kaynak kod vardı microc proda kendim hex yapmıştım.

Powered by EzPortal