Source\Device\Device.c(1043): error: #513: a value of type "unsigned char (*)(void)" cannot be assigned to an entity of type "unsigned char"
时间: 2024-04-18 08:32:09 浏览: 327
QString含汉字时,完美转char*和unsigned char*
这个错误意味着在C代码的第1043行,将一个返回类型为"unsigned char (*)(void)"的函数指针赋值给了一个类型为"unsigned char"的实体,这是不兼容的。
在C语言中,函数指针是一种特殊的指针类型,它指向函数而不是数据。而在这个错误中,将函数指针赋值给了一个普通的unsigned char变量,这是不合法的。
要解决这个错误,您需要确保将函数指针赋值给另一个函数指针或者使用正确的类型来接收函数的返回值。请检查代码中涉及到该错误的行数,并确保赋值操作符的左右两边的类型匹配。
阅读全文