Цитата(radu @ Jan 16 2009, 21:16)

hello again...
First of all, don't use library functions in ISR - they take many cycles to complete. Try to replace the block
Код
sprintf(lcd_buffer,"%02d:%02d:%02d %02d/%02d/%04d",t.hour, t.minute, t.second, t.date, t.month, t.year);
lcd_gotoxy(0,3);
lcd_puts(lcd_buffer);
by block, for exampe
Код
uint8_t i = 0;
lcd_buffer[i++] = 'H';
lcd_buffer[i++] = 'e';
lcd_buffer[i++] = 'l';
lcd_buffer[i++] = 'l';
lcd_buffer[i++] = 'o';
lcd_gotoxy(0,3);
lcd_puts(lcd_buffer);
and check if you will see the 4-th string.
The second. Sorry for

. Don't place your projects in the C disk

It's not a good practice