error 98: conflict with previous declaration of 'dht11_receive' for attribute 'type' at .\src\/dht11.h:9 from type 'unsigned-char function ( ) fixed' to type 'unsigned-char function ( unsigned-char generic* fixed, unsigned-char generic* fixed) fixed'
时间: 2023-06-26 09:04:40 浏览: 102
Error response from daemon: conflict: unable to delete 7f7c5b3bd538 (must be forced)[]
5星 · 资源好评率100%
这个错误提示表明在你的代码中,有两个不同的声明使用了相同的函数名 `dht11_receive`,但是它们的参数类型不一样,导致了冲突。
你需要检查你的代码,找到两个定义 `dht11_receive` 的位置,然后确认它们的参数类型是否一致。如果不一致,你需要修改其中一个的参数类型,以保证它们不再冲突。注意,修改参数类型可能会影响到调用该函数的其他代码,因此你需要仔细考虑这个修改的影响。
阅读全文