shandrei (10.05.2009 14:53, просмотров: 192) ответил Dany_Home на Приведите весь код(код функций, порядок вызова). Соответствует у вас инициализация SPI?
char *text = "mikroElektronika"; void main() {
Spi2_Init(); // initializes spi2 by defaul
Spi_Set_Active(2);
Spi_Lcd_Init(); // initialize lcd over spi interface
Spi_Lcd_Cmd(LCD_CLEAR); // Clear display
Spi_Lcd_Cmd(LCD_CURSOR_OFF); // Turn cursor off
Spi_Lcd_Out(1,6, "mikroE"); // Print text to LCD, 1st row, 6th column
Spi_Lcd_Chr_CP('!'); // append !
Spi_Lcd_Out(2,1, text); // Print text to LCD, 2nd row, 1st column
Spi_Lcd_Out(3,1,"mikroE"); // for lcd with more than two rows
Spi_Lcd_Out(4,15,"mikroE"); // for lcd with more than two rows
}//~!