unsigned char *G_u8p_runMode;
int16_t D[1000];
G_u8p_runMode= &D[70];
error: #513: a value of type "int16_t *" cannot be assigned to an entity of type "unsigned char *"
强制类型转换。
G_u8p_runMode=(unsigned char *) &D[70];
回复 板凳 jishuaihu 的帖子
恩,是的,数据类型不一致,已经改过来了。。多谢!!
回复 沙发 lcofjp 的帖子
unsigned short *G_u16p_runMode;
这样改更好些。。。。。。。