Kiibohd Controller
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

12345678910111213141516171819
  1. #ifndef _usb_mem_h_
  2. #define _usb_mem_h_
  3. #include <stdint.h>
  4. typedef struct usb_packet_struct {
  5. uint16_t len;
  6. uint16_t index;
  7. struct usb_packet_struct *next;
  8. uint8_t buf[64];
  9. } usb_packet_t;
  10. usb_packet_t * usb_malloc(void);
  11. void usb_free(usb_packet_t *p);
  12. #endif