More preparation for NKRO USB for arm

- Added NKRO descriptor
- Added NKRO HID descriptor
- Updated boot HID descriptor
- Fixed many bugs with the pjrc ARM usb stack (with USB HID)
This commit is contained in:
Jacob Alexander 2014-09-28 16:44:57 -07:00
parent 55892cedc1
commit 4255a99fcc
8 changed files with 1112 additions and 712 deletions

View file

@ -1,6 +1,7 @@
/* Teensyduino Core Library
* http://www.pjrc.com/teensy/
* Copyright (c) 2013 PJRC.COM, LLC.
* Modifications by Jacob Alexander (2013-2014)
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
@ -31,8 +32,15 @@
#ifndef _usb_mem_h_
#define _usb_mem_h_
// ----- Includes -----
// Compiler Includes
#include <stdint.h>
// ----- Structs -----
typedef struct usb_packet_struct {
uint16_t len;
uint16_t index;
@ -40,8 +48,14 @@ typedef struct usb_packet_struct {
uint8_t buf[64];
} usb_packet_t;
usb_packet_t * usb_malloc(void);
void usb_free(usb_packet_t *p);
// ----- Functions -----
usb_packet_t *usb_malloc();
void usb_free( usb_packet_t *p );
#endif