unsigned char LCD[8][64] = {((unsigned char) 0)};
在LCD.h中,我们想要的是:
extern unsigned char LCD[][];
我们得到这个错误:
Error[Pe098]: an array may not have elements of this type
extern unsigned char LCD[][64];
否则,编译器将无法计算第一行之后的偏移量.