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.
有人可以解释一下 LUFA 库如何处理 USB 描述符吗?我似乎无法追踪返回给库源的任何示例中的描述符。它们是如何工作的?它们是否被编程到给定位置的闪存中?
谢谢,乔治
描述符struct在 LUFA 库中定义。你发现他们在
struct
/drivers/USB/Core/StdDescriptors.h
通过“主包含文件”包含/Drivers/USB/USB.h
/Drivers/USB/USB.h
struct用户应用程序利用这些
请查阅LUFA 库文档并在搜索框中查找“描述符”或展开文件列表子树。这将指导您了解定义的内容和位置。还要查找主要的 USB 功能void USB_USBTask(void)。
void USB_USBTask(void)
关于基础知识的另一个好资源是this。