Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要一个定时器中断来调用一个在 Arduino 上带有一组参数的函数。我查看了 Timer1 库,但它似乎无法用于将参数传递给回调函数。
您可以将回调包装到无参数函数中。这个包装函数可以将你想要的任何参数传递给你的函数。
你不能。您必须使用某种全局结构来保存当前状态。使用回调时,从该结构中获取您需要的数据。