RTC PROGRAM FOR ARM7LPC2129
RTC PROGRAM FOR ARM7LPC2129 PROGRAM FOR DISPLAYING CLOCK TIME? #include<lpc21xx.h> #define RS (1<<10) #define RW (1<<12) #define EN (1<<13) #define DATA_PINS (0xff<<15) void lcdcmd(int cmd); void lcddata(char data); void lcdstring(char *str); void lcdstring1(char *str1); void lcd_num(int num); void delay(int count); void lcdinit(void); void delay(int count) { int i,j; for(i=0;i<count;i++) { for(j=0;j<5000;j++) { } } } void lcdcmd(int cmd) { IOCLR0=RS; IOCLR0=RW; IOCLR0=(DATA_PINS); IOSET0=(cmd<<15); IOSET0=EN; delay(30); IOCLR0=EN; } void lcddata(char d...