自己编了一个LCD显示程序,老是出现如下错误:'LCD_PrintInt8': requires ANSI-style prototype。官网上也找不到相关资料,十分着急。。。
程序如下:
#include <device.h>
void main()
{
uint8 index,position,j;
uint8 I2C_slaveBuffer[10];
LCD_Start();
for(j=0;j<10;j++)
{
I2C_slaveBuffer[j]=j;
}
for(index=0,position=0;index<10;index++,position+=2)
{
LCD_Position(0,position);
LCD_PrintInt8(I2C_slaveBuffer[index]);
CyDelay(1000);
}
}
望好心大神指教。。。 |