将16x2 LCD与SPI连接,将字符放入第二行

时间:2017-03-16 00:06:00

标签: c embedded msp430 lcd

我正在使用MSP430 MCU读取模拟信号,并在带有SPI连接的LCD上显示结果。 LCD为16x2,根据Datasheet上的SPI连接详细信息进行连接,并使用Hitachi HD44780驱动程序。我可以填写第一行的16个字符没问题。当我超过16时,即使我扩展了包含我想要打印的字符串的char数组,也不显示最后一个字符(如预期的那样)。问题是第二行从不显示任何内容。当第一行中的位置中没有字符时,所有位置仍然存在微弱的背景,但第二行始终是空白的。以下是打印中使用的功能。我做错了什么?

我知道接线正确且LCD正常工作。为了测试这些,我将显示器连接到arduino进行测试,因为代码更容易,我能够在弓行中显示字符。非描述性变量由MSP430源文件定义,包括寄存器,缓冲区和其他控制,以使器件处于SPI通信模式。

void AlignLaserTarget()
{

    int i,k, j;
    struct testResults *ptestResults;
    char mess1[17]; //changed from 8 to hold 16 characters

    ptestResults=getTestResults();

    // reset global vars
    timeI1=0;
    timeA=0;
    i=starResults.ch1Amplitude; //analog integer value to be printed on LCD
    j=starResults.ch2Amplitude; //same
    k=starResults.ch3Amplitude; //same, but should go in second row
    sprintf(mess1,"1:%i 2:%i", i, j);
    stringTo_lcd8( mess1);
}

void stringTo_lcd8( char* lcdString )
{
    int i;

        LCD_COMMAND_MODE;       // display code
        timer_us(20);
        write_lcd8( 0x01); // clear display
        timer_ms(2);
        LCD_DATA_MODE; //enable data sending pin

        for ( i=0; *lcdString !=0 ; ++i)
        {
            write_lcd8( *lcdString);
            ++lcdString;
        }                       // end of display code

        timer_us(10000);    // 10ms delay . should not be needed as normal interval between counts is at least 75 ms or 12 in. at 800ft/min rate
}
//*******************************************************

void write_lcd8( unsigned char lcdbyte)
{
      UCA0IFG &= ~UCTXIFG;  // CLEAR FLAG
      UCA0CTL1 |= UCSWRST;                      // **Put state machine in reset**
      UCA0CTL0 = UCMST+UCSYNC+ UCMSB+ UCCKPH;
      UCA0BR0 = 0x80;                           // /hex80
      UCA0CTL1 &= ~UCSWRST;                     // **Initialize USCI state machine**
      timer_us(100);
        LCD_CHIP_ENABLE;            // LCD enable pin output
        timer_us(20); // added trp
        UCA0TXBUF =lcdbyte;
        timer_us(150);
        while (!(UCA0IFG&UCTXIFG));
        UCA0IFG &= ~UCTXIFG;  // CLEAR FLAG
        LCD_CHIP_DISABLE;
        timer_us(30);
          UCA0CTL1 |= UCSWRST;                      // **Put state machine in reset**
          UCA0CTL0 |= UCMST+UCSYNC+ UCMSB+ UCCKPH;
          UCA0BR0 = 0x02;                           // /2
          UCA0CTL1 &= ~UCSWRST;                     // **Initialize USCI state machine**

}

2 个答案:

答案 0 :(得分:0)

我认为在使用应用程序逻辑之前,你必须设计一些更多的驱动程序功能。我已经采用示例代码来设置光标位置

void Lcd8_Set_Cursor(char line, char col)
{
    if(line == 1)
      Lcd8_Cmd(0x80 + col);
    else if(line == 2)
        Lcd8_Cmd(0xC0 + col);
}

然后在打印逻辑中使用相同的内容。当长度超过16时,您可以切换线路并开始写入。

答案 1 :(得分:0)

HD44780每行需要40个字符,所以我只是添加空格来填充第一行,然后为下一行写下字符。我确信有更好的解决方案,但这很快,而且很有效。我还必须更改两行配置的初始化规范。