LCD Pinlerini nasıl ayarlayabilirim ?

Başlatan orhanc, 02 Mayıs 2010, 20:34:15

orhanc

Son Denememde configleri kod olarak ekledim ve devre çalıştı sanırım mplabın ayar kısmında bir sorunu var. Herkese teşekkür ederim vaktinizi ayırdığınız için.
i'm doing nothing... Giddy Up  http://www.drorhan.com

orhanc

Arkadaşlar burada verilen lcd kodunda lcd yi 4*20 olarak nasıl ayarlayabilirim? ve birde şöyle bir sorun oluyor bazen ds1302 den saati alıyorum bazen değerler 165 veya 0 olarak geliyor. Bunun bir sebebi var mıdır?
i'm doing nothing... Giddy Up  http://www.drorhan.com

orhanc

Alıntı yapılan: FxDev - 07 Mayıs 2010, 13:41:17
Alıntı yapılan: orhanc - 07 Mayıs 2010, 09:36:21
Arkadaşlar burada verilen lcd kodunda lcd yi 4*20 olarak nasıl ayarlayabilirim? ve birde şöyle bir sorun oluyor bazen ds1302 den saati alıyorum bazen değerler 165 veya 0 olarak geliyor. Bunun bir sebebi var mıdır?

Kodunuzu koysanız kütüphaneleriniz dahil yardımcı oluruz.

2.sayfadaki ahmet2004 tarafından göndrerilen kodu kullandım ama o 2 satır.
i'm doing nothing... Giddy Up  http://www.drorhan.com

orhanc

i'm doing nothing... Giddy Up  http://www.drorhan.com

kantirici

Alıntı yapılan: ahmet2004 - 05 Mayıs 2010, 17:16:27
delay.c
/*
 *	Delay functions
 *	See delay.h for details
 *
 *	Make sure this code is compiled with full optimization!!!
 */

#include	"delay.h"

void
DelayMs(unsigned char cnt) {
	unsigned char i;
	while (cnt--) {
		i=4;
		while(i--) {
			DelayUs(uS_CNT);	/* Adjust for error */
		} ;
	} ;
}


delay.h
/*
 *	Delay functions for HI-TECH C on the PIC18
 *
 *	Functions available:
 *		DelayUs(x)	Delay specified number of microseconds
 *		DelayMs(x)	Delay specified number of milliseconds
 *
 *	Note that there are range limits: 
 *	- on small values of x (i.e. x<10), the delay becomes less
 *	accurate. DelayUs is accurate with xtal frequencies in the
 * 	range of 4-16MHZ, where x must not exceed 255. 
 *	For xtal frequencies > 16MHz the valid range for DelayUs
 *	is even smaller - hence affecting DelayMs.
 *	To use DelayUs it is only necessary to include this file.
 *	To use DelayMs you must include delay.c in your project.
 *
 *	Set the crystal frequency in the CPP predefined symbols list
 *	on the PICC-18 commmand line, e.g.
 *	picc18 -DXTAL_FREQ=4MHZ
 *
 *	or
 *	picc18 -DXTAL_FREQ=100KHZ
 *	
 *	Note that this is the crystal frequency, the CPU clock is
 *	divided by 4.
 *
 *	MAKE SURE this code is compiled with full optimization!!!
*/

#define	MHZ	*1

#ifndef	XTAL_FREQ
#define	XTAL_FREQ	20MHZ		/* Crystal frequency in MHz */
#endif

#if	XTAL_FREQ < 8MHZ
#define	uS_CNT 	238			/* 4x to make 1 mSec */
#endif

#if	XTAL_FREQ == 8MHZ
#define uS_CNT  244
#endif

#if	XTAL_FREQ > 8MHZ
#define uS_CNT  246
// 246
#endif

#define FREQ_MULT	(XTAL_FREQ)/(4MHZ)

#define	DelayUs(x)	{ unsigned char _dcnt; \
			  if(x>=4) _dcnt=(x*(FREQ_MULT)/2); \
			  else _dcnt=1; \
			  while(--_dcnt > 0) \
				{\
				asm("nop");\
				asm("nop");\
				continue; }\
		} 

extern void DelayMs(unsigned char);


Genelde hitechC de yapılan hata delay.c ve delay.h ın doğru kullanılamamasıdır.


@ahmet2004 verdigin kütüphane içinçok teşekkürler.Sorunsuz ve kolayca istedigimiz pine lcd yi yönlendirebiliyoruz.