summaryrefslogtreecommitdiff
path: root/tinyusb/device
AgeCommit message (Collapse)Author
2015-05-01formattinghathach
2015-05-01formattinghathach
2015-05-01replace ATTR_PACKED_STRUCT by simply ATTR_PACKED (drop IAR support)hathach
remove "primitive_types.h" by simply include stdbool.h, stdint.h
2014-05-13add lpcxpresso spifi flash settinghathach
2014-04-25cdc device app rename CDCD_APP_BUFFER_SIZE to SERIAL_BUFFER_SIZEhathach
cdc host app add SERIAL_BUFFER_SIZE for buffer constant, add cdc data receive if cb with TUSB_EVENT_XFER_ERROR minor change to keyboard & mouse host app add ASSERT_FAILED & ASSERT_FAILED_MSG add cast to fix IAR build error with dcd_lpc43xx.c FreeRTOS - merge FreeRTOSConfig for m0, m3, m4 - re-implement application hook - support portmacro.h for m0
2014-04-24added all assert check to osal_queue_send and osal_semaphore_posthathach
2014-04-24correct dcd_pipe_is_busy to use list_qtd_idx[] instead of qtd_overlayhathach
flush usbd_queue_hdl when bus_reset add assert check for osal_queue_send increase ENUM_QUEUE_DEPTH for usbh change osal_freeRTOS.h implementation to - correctly waiting forever for semaphore wait, queue & mutex - not use ISR safe version since it is not as generic as we want
2014-04-21clean up code at usbd_setup_received_isrhathach
2014-04-21minor adjustment to dcd_lpc43xx.chathach
usbd still defer setup received and handle in usbd task since the problem is caused by usb mini otg on the board EA4357.
2014-04-18move osal_queue_send of osal_none to osal_none.chathach
2014-04-17move STRING & XSTRING & STATIC_ASSERT to compiler.hhathach
disable test for a class of cdc host temporarily disable test for test_osal_none.c change include in some core files remove osal.h from common.h
2014-04-17clean up STATIC_VARhathach
2014-04-09remove OSAL_VAR for the simplicityhathach
clean up osal.h
2014-04-04remove RF1GHZNODE from board/readme.mdhathach
dcd_lpc43xx.c - assign ENDPTPRIME with = instead of |= - fix bug with control transfer the determination of complete transferred --> fix keyboard + msc causes fast blinking add osal_semaphore_reset(usbd_control_xfer_sem_hdl) when bus_reset
2014-03-31refractor usbd_task as wrapper for body taskhathach
IAR device_freertos works well except for CDC with typing many characters (like Keil)
2014-03-25more doxygen stuffshathach
2014-03-24doxygenhathach
2014-03-24more doxygen workshathach
2014-03-24doxygen documentinghathach
2014-03-23tested with IAR & keil for device ea4357, fix some warningshathach
2014-03-23clean IAR warninghathach
2014-03-23use internal buffer for hid report descriptor as well.hathach
2014-03-23finished using usbd_enum_buffer for all std descriptorshathach
2014-03-23remove TUSB_CFG_DEVICE_STRING_DESCRIPTOR_COUNThathach
refractor descriptor to array of pointer, adding interface descriptor as well
2014-03-23adding usbd_enum_buffer to usbdhathach
remove string descriptor USB RAM requirement
2014-03-23remove IAD_DESC_REQUIREDhathach
add compiler guard for exceeding number of endpoints for lpc11/13u
2014-03-22rename dcd_11u_13u_qhd_t::total_bytes to nbytes to prevent confusionhathach
introduce scsi_data to mscd_interface_t to make tusbd_msc_scsi_cb buffer's address no longer to be required in USB ram section --> save usb ram for lpc11/13u
2014-03-21clean ATTR_USB_MIN_ALIGNMENT on application and most of device except the ↵hathach
msc_device.c
2014-03-21some doxygenhathach
2014-03-21clean up some device warningshathach
move led_blinking_task and led_blinking_set_interval to board.c
2014-03-19change OSAL_TASK_FUNCTION to adapt with cmsis rtxhathach
2014-03-18finish descriptor refractor for hid keyboard & mousehathach
2014-03-18refractor descriptor passing for device with user-friendly structureshathach
2014-03-18app descriptor renamehathach
2014-03-18clean up tusb_descriptorshathach
2014-03-16doxygen documenthathach
2014-03-14fix out of range array in usbdhathach
2014-03-14clean all device os none warningshathach
2014-03-14fix warning for device os nonehathach
2014-03-13fix a problem with dcd 13uxx dcd_pipe_clear_stall that should clear toggle ↵hathach
for buffer0 (instead of active buffer) as the next transfer is always forced to be happened on buffer0
2014-03-12change dcd 176x alignment placement to work with IARhathach
2014-03-12able to build lpc11u with IARhathach
clean ending warming with IAR
2014-03-12IAR line ending warninghathach
2014-03-12fix iar warninghathach
2014-03-12added scatter file for lpc11u & lpc13u for it to run with keilhathach
2014-03-10try to port lpc11uxx device demo with IARhathach
2014-03-10change desc_str_table to array of pointer of uint8_t* to be compatible with ↵hathach
IAR (lack of support for VLA initialization) IAR device os none works with ea4357
2014-03-10change IAR TUSB_CFG_ATTR_USBRAM to _Pragma("location=\".ahb_sram1\"") ↵hathach
instead of @ .ahb_sram1 so that we can place it before the variable for a cleaner code change pipe xfer API buffer from void* to uint8_t* change FIFO_DEF to have a separated buffer to be compatible with IAR\ refractor IAR data alignment pragma
2014-03-10clean up dcd_lpc175x_6x.chathach
2014-03-10refractor dcd_lpc175x_6xhathach
- remove dd allocation table and use fixed 2 dd for each endpoints - change dd::used to dd::int_on_complete --> fixed all the bugs with lpc175x_6x with MSC device & CDC device