usb_usb: Add multiple keyboard support

it supports four keyboards and two cascaded hubs
This commit is contained in:
tmk 2016-06-21 13:49:06 +09:00
parent 60b88f155e
commit 148c6a5175
7 changed files with 238 additions and 191 deletions

View file

@ -28,6 +28,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define XSTR(s) #s
#ifdef __cplusplus
extern "C" {
#endif
uint8_t bitpop(uint8_t bits);
uint8_t bitpop16(uint16_t bits);
uint8_t bitpop32(uint32_t bits);
@ -40,4 +44,8 @@ uint8_t bitrev(uint8_t bits);
uint16_t bitrev16(uint16_t bits);
uint32_t bitrev32(uint32_t bits);
#ifdef __cplusplus
}
#endif
#endif