summaryrefslogtreecommitdiff
path: root/tinyusb/class
AgeCommit message (Collapse)Author
2013-07-02add tusbh_cdc_serial_is_mounted APIhathach
test for cdch close driver
2013-07-02add cdc_rndis enum & structhathach
2013-07-01add cdc host driver close cdch_closehathach
refractor - add helper function in ehci qhd_next & qtd_next - extract function qhd_create_pipe_handle rename tusb_transfer_type_t to tusb_xfer_type_t add some handling for stall
2013-07-01rename usbh_isr to usbh_xfer_isrhathach
2013-07-01house keepinghathach
2013-07-01add acm_capability saving to host data & its testhathach
2013-07-01fix compilation errorhathach
2013-07-01add & pass a first few test for cdc hosthathach
implement cdch_open_subtask
2013-06-29test refractorhathach
2013-06-29[CDC]hathach
- add configure option - add include path - add driver function table
2013-06-29adding descriptor, structure, enum support for cdchathach
2013-06-27use SUBTASK_EXIT to restart & exit task without "assert"hathach
2013-06-27add mutex support for osalhathach
add test for mutex in test_osal_none.c implement usbh_control_xfer using mutex to get access to queue xfer on control pipe (while semaphore is used to sync with hcd DMA) failed to issue control xfer: set idle & get report descriptor in hidh_open_subtask (more to work on)
2013-06-27add set idle request for hidh_open_subtaskhathach
add interface number to hidh_interface_info_t refractor hidh_open_subtask to be a true subtask cannot run with set idle code ON because of semaphore misuse
2013-06-26remove app_os_prio.h in os_none configurehathach
remove instance_num in hidh API temporarily pause device stack developement should fix travis-ci build error
2013-06-23add custom bulk out testhathach
2013-06-22fix bug with custom class that terminate xfer after the first QTDhathach
2013-06-21fix a stupid bughathach
2013-06-21add api for hcd: hcd_pipe_is_idlehathach
add api for usbh: tusbh_device_get_mounted_class_flag implement api for custom class - is mounted - read
2013-06-21[host lpc43xx] adding support for host custom classhathach
refractor usbh class driver indexing opt out periodic list code in EHCI (need to refractor/group later) [device lpc176x] rename dcd_endpoint_configure to dcd_pipe_open add usbd_pipe_open to manage pipe
2013-06-16clean up some & add code for managing control request targeting interfacehathach
2013-06-14add dcd_pipe_control_readhathach
2013-06-14implement hidd_control_request including std & class specific to interface ↵hathach
number. refractor usbd_setup_received
2013-06-12add coreid to hidd_inithathach
temporarily implement hidd_init using dcd from lpc17xx add more test for dcd lp176x implement dcd_endpoint_configure
2013-06-12clean uphathach
2013-06-04re-create ngx4330.hhathach
remove some rom driver dependency on upper layer introduce CAP_DEVICE_ROMDRIVER to overwrite TUSB_CFG_DEVICE_USE_ROM_DRIVER within the lib add support for lpc175x_6x - able to build and blink led on lpcxpresso1769 with device (without any class enabled)
2013-06-03add TUSB_CFG_PROUDCT_ID checkhathach
move USB_MAX_EP_NUM to device dependency - lpc43 --> 6 - lpc11/13 --> 5
2013-06-03refractor device mouse main.c & tusbd_hid_mouse_send_reporthathach
2013-06-03refractor tusb_descriptorshathach
usbd device_class_driver added & tested HID mouse for device (work together with hid keyboard) rename DEVICE_ROM_REG_BASE, DEVICE_ROM_DRIVER_ADDR
2013-06-01rename romdriver handlehathach
forming API for USBD-CLASS driver (abstract away from rom driver) separate buffer of hid class from buffer of core driver
2013-05-31refractor change tusbd_hid_keyboard_send_report APIhathach
2013-05-31change at86rf to 1ghznodehathach
rom device runs ok with lpc11uxx
2013-05-29fix lpcxpresso1347 board_ledshathach
temp change USBD_API to ROM_API add lpc13xx device support fix romdriver pointer able to init rom driver
2013-05-28rename NGX to ngxhathach
add a bunch of stub header for dcd (175x_6x, 13xx, 18xx_43xx) add dcd_nxp_romdriver for handling usb rom driver add BIT_TEST_ in binary.h remove mw_usbd_hid.h include due to lexical conflict
2013-05-25rename descriptor type, hid descriptor typehathach
2013-05-25add stub function to able to build device with EA4357hathach
- dcd_controller_reset - dcd_controller_connect
2013-05-23fix host build error (problem with conflict name in hid.h)hathach
2013-05-23- move CMSIS & driver lib for lpc13u to codebase bsp/lpc13xxhathach
- change descriptor.c/h able to build device example
2013-05-14abstract os priority for application taskshathach
2013-05-14rename tusbh_hid_keyboard/mouse_is_supported to ↵hathach
tusbh_hid_keyboard/mouse_is_mounted
2013-05-09test clean uphathach
2013-05-06house keepinghathach
2013-05-06add stub for msc host & hub driverhathach
2013-05-06change format of file header & license spacinghathach
2013-04-26add hid_keycode_to_ascii_tbl for hid classhathach
improve keyboard_app, should display all displayable characters improve the de-bouncing keyboard (still got some issues)
2013-04-09add test & code for TUSB_EVENT_INTERFACE_OPEN for tusbh_hid_keyboard_isr ↵hathach
tusbh_hid_mouse_isr
2013-04-09add tusbh_hid_mouse_isr & tusbh_hid_keyboard_isr callback with xfer_complete ↵hathach
& error event
2013-04-07- fix HID_MOUSEBUTTON right & lefthathach
- add mouse app to mount mouse interface
2013-04-07refractor extract hidh_interface_get_report from keyboard_get_reporthathach
2013-04-07add complete isr for hidh mousehathach
refractor hid_host.c - extract hidh_interface_open from hidh_keyboard_open - extract hidh_interface_close from hidh_keyboard_close -