摘要:
/* Function Prototypes: */ /** Main function to initialize and start the USB interface. Once active, the USB interface will * allow for device connect 阅读全文
摘要:
enum USB_Modes_t { USB_MODE_None = 0, /**< Indicates that the controller is currently not initialized in any specific USB mode. */ USB_MODE_Device = 1 阅读全文
摘要:
结构体中的冒号表示位域。位域出现的原因是由于某些信息的存储表示只需要几个bit位就可以表示而不需要一个完整的字节,同时也是为了节省存储空间和方便处理。其表示形式为:struct 位域结构名{ 类型说明符 位域名:位域长度}例如:struct bit_struct{ int bit1:3; int b 阅读全文