您的位置 首页 IC

LPC2132学习中遇到的问题2

在使用ADS12编译程序的过程中,我们有函数如下定义:voidPutStr(uint8x,uint8y,uint8*str);我们在主函数中有这样的用法:PutS

在运用ADS1.2编译程序的过程中,咱们有函数如下界说:

void PutStr(uint8 x, uint8 y, uint8* str);
咱们在主函数中有这样的用法:
PutStr(0, 0, “Hello world!”);
经编译后,有如下过错:
Error: C3028E implicit cast of pointer to non-equal pointer
解决方法如下:
PutStr(0, 0, (uint8*)”Hello world!”);
行将咱们的字符串强制转换为咱们在函数中所界说的方式。
PS:

C3028E: implicit cast of pointer to non-equal pointer

C3029E: implicit cast of non-0 int to pointer

C3030E: implicit cast of pointer to int

C3031E: implicit cast of to int

Try re-writing the code to avoid the implicit cast, e.g. add an explicit cast.
These errors can be suppressed with “-Ec”.

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/bandaoti/260870.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部