This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

EZDSP5515的LCD的字符怎么设置呢?还有例程中有些代码看不太懂,求教

各位工程师,EZDSP5515的LCD的字符怎么设置呢?比如我想显示W,

 printLetter(0x32,0x49,0x49,0x26);  // S  这个怎么就是表示S呢?

还有例程中相关代码:比如

Int16 OSD9616_send( Uint16 comdat, Uint16 data )
{
Uint8 cmd[2];
cmd[0] = comdat & 0x00FF; // Specifies whether data is Command or Data
cmd[1] = data; // Command / Data

return USBSTK5515_I2C_write( OSD9616_I2C_ADDR, cmd, 2 );
}

Int16 OSD9616_multiSend( Uint8* data, Uint16 len )
{
Uint16 x;
Uint8 cmd[10];
for(x=0;x<len;x++) // Command / Data
{
cmd[x] = data[x];
}
return USBSTK5515_I2C_write( OSD9616_I2C_ADDR, cmd, len );
}

cmd[]数组里面是什么呢?还有怎么不让LCD滚动呢?谢谢