no matching function for call to 'HardwareSerial::print(const char [44], uint8_t&, uint32_t&)'报错
时间: 2024-05-17 16:12:49 浏览: 162
no matching function for call to function (解决方案).md
这个错误通常表示你在调用 `print` 函数时传递的参数类型与函数定义的参数类型不匹配。
根据错误信息可知,你传递了一个 `const char` 类型的字符串、一个 `uint8_t` 类型的变量和一个 `uint32_t` 类型的变量给 `print` 函数,但是在 `HardwareSerial` 类中并没有定义这样的函数。
你需要仔细检查代码,确保传递给 `print` 函数的所有参数类型与函数定义的参数类型匹配。如果类型不匹配,你需要将参数转换为正确的类型,或者更改函数定义以匹配你的参数。
阅读全文