changelog.rst 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661
  1. *********
  2. Changelog
  3. *********
  4. 0.13.0
  5. ======
  6. - [tu_fifo] Fix locked mutex when full, and return type in peek_n()
  7. Controller Driver (DCD & HCD)
  8. -----------------------------
  9. - [DWC2] Generalize synopsys dwc2 with synopsys/dwc2 which support both FS and HS phy (UTMI and ULPI) for various MCUs.
  10. - Broadcom 28/27xx on raspberrypi SBC
  11. - Silicon Labs EFM32
  12. - Espressif ESP32 Sx
  13. - GigaDevice GD32
  14. - ST STM32
  15. - Infineon XMC
  16. - [KL25] Add new HCD for NXP KL25
  17. - [MUSB] Add new DCD and HCD for Mentor musb with TI MSP432E4
  18. - [F1C100s] Add new DCD for Allwinner F1C100s family
  19. - [PIC32MZ] Add new DCD for PIC32MZ
  20. - [nRF] Fix/Enhance varous race condtion with: EASY DMA, request HFXO, EPOUT
  21. - [ChipIdea] rename Transdimension to more popular ChipIdea Highspeed,
  22. - [RP2040] various update/fix for hcd/dcd
  23. - [FT9XX] new DCD port for Bridgetek FT90x and FT93x devices
  24. - [DA1469X] Fix resume
  25. - [OHCI] Fix device array out of bound
  26. Note: legacy drivers such as st/synopsys, nxp/transdimension are still present in this release but won't recieve more update and could be removed in the future.
  27. Device Stack
  28. ------------
  29. - [Audio] Support disabling feedback format correction (16.16 <-> 10.14 format)
  30. - [MSC] Add tud_msc_request_sense_cb() callback, change most default sense error to medium not present (0x02, 0x3A, 0x00)
  31. - [Video] Fix video_capture example fails enumeration when 8FPS
  32. Host Stack
  33. ----------
  34. No notable changes
  35. 0.12.0
  36. ======
  37. - add CFG_TUSB_OS_INC_PATH for os include path
  38. Device Controller Driver (DCD)
  39. ------------------------------
  40. - Getting device stack to pass USB Compliance Verification test (chapter9, HID, MSC). Ports are tested:
  41. nRF, SAMD 21/51, rp2040, stm32f4, Renesas RX, iMXRT, ESP32-S2/3, Kinetic KL25/32, DA146xx
  42. - Added dcd_edpt_close_all() for switching configuration
  43. - [Transdimension] Support dcd_edpt_xfer_fifo() with auto wrap over if fifo buffer is 4K aligned and size is multiple of 4K.
  44. - [DA146xx] Improve vbus, reset, suspend, resume detection, and remote wakeup.
  45. Device Stack
  46. ------------
  47. - Add new network driver Network Control Model (CDC-NCM), update net_lwip_webserver to work with NCM (need re-configure example)
  48. - Add new USB Video Class UVC 1.5 driver and video_capture example ((work in progress)
  49. - Fix potential buffer overflow for HID, bluetooth drivers
  50. Host Controller Driver (HCD)
  51. ----------------------------
  52. No notable changes
  53. Host Stack
  54. ----------
  55. No notable changes
  56. 0.11.0 (2021-08-29)
  57. ===================
  58. - Add host/hid_controller example: only worked/tested with Sony PS4 DualShock controller
  59. - Add device/hid_boot_interface example
  60. - Add support for Renesas CCRX toolchain for RX mcu
  61. Device Controller Driver (DCD)
  62. ------------------------------
  63. - Add new DCD port for SAMx7x (E70, S70, V70, V71)
  64. - Add new mcu K32L2Bxx
  65. - Add new mcu GD32VF103
  66. - Add new mcu STM32l151
  67. - Add new mcu SAML21
  68. - Add new mcu RX65n RX72n
  69. - Fix NUC120/121/126 USBRAM can only be accessed in byte manner. Also improve set_address & disable sof
  70. - Add Suspend/Resume handling for Renesas RX family.
  71. - Fix DA1469x no VBUS startup
  72. Synopsys
  73. ^^^^^^^^
  74. - Fix Synopsys set address bug which could cause re-enumeration failed
  75. - Fix dcd_synopsys driver integer overflow in HS mode (issue #968)
  76. nRF5x
  77. ^^^^^
  78. - Add nRF5x suspend, resume and remote wakeup
  79. - Fix nRF5x race condition with TASKS_EP0RCVOUT
  80. RP2040
  81. ^^^^^^
  82. - Add RP2040 suspend & resume support
  83. - Implement double buffer for both host and device (#891). Howver device EPOUT is still single bufferred due to techinical issue with short packet
  84. Device Stack
  85. ------------
  86. USBD
  87. ^^^^
  88. - Better support big endian mcu
  89. - Add tuh_inited() and tud_inited(), will separte tusb_init/inited() to tud/tuh init/inited
  90. - Add dcd_attr.h for defining common controller attribute such as max endpoints
  91. Bluetooth
  92. ^^^^^^^^^
  93. - Fix stridx error in descriptor template
  94. DFU
  95. ^^^
  96. - Enhance DFU implementation to support multiple alternate interface and better support bwPollTimeout
  97. - Rename CFG_TUD_DFU_MODE to simply CFG_TUD_DFU
  98. HID
  99. ^^^
  100. - Fix newline usage keyboard (ENTER 0x28)
  101. - Better support Hid Get/Set report
  102. - Change max gamepad support from 16 to 32 buttons
  103. MIDI
  104. ^^^^
  105. - Fix midi available
  106. - Fix midi data
  107. - Fix an issue when calling midi API when not enumerated yet
  108. UAC2
  109. ^^^^
  110. - Fix bug and enhance of UAC2
  111. Vendor
  112. ^^^^^^
  113. - Fix vendor fifo deadlock in certain case
  114. - Add tud_vendor_n_read_flush
  115. Host Controller Driver (HCD)
  116. ----------------------------
  117. RP2040
  118. ^^^^^^
  119. - Implement double bufferred to fix E4 errata and boost performance
  120. - Lots of rp2040 update and enhancment
  121. Host Stack
  122. ----------
  123. - Major update and rework most of host stack, still needs more improvement
  124. - Lots of improvement and update in parsing configuration and control
  125. - Rework and major update to HID driver. Will default to enable boot interface if available
  126. - Sepearate CFG_TUH_DEVICE_MAX and CFG_TUH_HUB for better management and reduce SRAM usage
  127. 0.10.1 (2021-06-03)
  128. ===================
  129. - rework rp2040 examples and CMake build, allow better integration with pico-sdk
  130. Host Controller Driver (HCD)
  131. ----------------------------
  132. - Fix rp2040 host driver: incorrect PID with low speed device with max packet size of 8 bytes
  133. - Improve hub driver
  134. - Remove obsolete hcd_pipe_queue_xfer()/hcd_pipe_xfer()
  135. - Use hcd_frame_number() instead of micro frame
  136. - Fix OHCI endpoint address and xferred_bytes in xfer complete event
  137. 0.10.0 (2021-05-28)
  138. ===================
  139. - Rework tu_fifo_t with separated mutex for read and write, better support DMA with read/write buffer info. And constant address mode
  140. - Improve audio_test example and add audio_4_channel_mic example
  141. - Add new dfu example
  142. - Remove pico-sdk from submodule
  143. Device Controller Driver (DCD)
  144. ------------------------------
  145. - Add new DCD port for Silabs EFM32GG12 with board Thunderboard Kit (SLTB009A)
  146. - Add new DCD port Renesas RX63N, board GR-CITRUS
  147. - Add new (optional) endpoint API dcd_edpt_xfer_fifo
  148. - Fix build with nRF5340
  149. - Fix build with lpc15 and lpc54
  150. - Fix build with lpc177x_8x
  151. - STM32 Synopsys: greatly improve Isochronous transfer with edpt_xfer_fifo API
  152. - Support LPC55 port1 highspeed
  153. - Add support for Espressif esp32s3
  154. - nRF: fix race condition that could cause drop packet of Bulk OUT transfer
  155. USB Device Driver (USBD)
  156. ------------------------
  157. - Add new (optional) endpoint ADPI usbd_edpt_xfer_fifo
  158. Device Class Driver
  159. -------------------
  160. CDC
  161. - [Breaking] tud_cdc_peek(), tud_vendor_peek() no longer support random offset and dropped position parameter.
  162. DFU
  163. - Add new DFU 1.1 class driver (WIP)
  164. HID
  165. - Fix keyboard report descriptor template
  166. - Add more hid keys constant from 0x6B to 0xA4
  167. - [Breaking] rename API
  168. - HID_PROTOCOL_NONE/KEYBOARD/MOUST to HID_ITF_PROTOCOL_NONE/KEYBOARD/MOUSE
  169. - tud_hid_boot_mode() to tud_hid_get_protocol()
  170. - tud_hid_boot_mode_cb() to tud_hid_set_protocol_cb()
  171. MIDI
  172. - Fix MIDI buffer overflow issue
  173. - [Breaking] rename API
  174. - Rename tud_midi_read() to tud_midi_stream_read()
  175. - Rename tud_midi_write() to tud_midi_stream_write()
  176. - Rename tud_midi_receive() to tud_midi_packet_read()
  177. - Rename tud_midi_send() to tud_midi_packet_write()
  178. Host Controller Driver (HCD)
  179. ----------------------------
  180. - No noticable changes
  181. USB Host Driver (USBH)
  182. ----------------------
  183. - No noticable changes
  184. Host Class Driver
  185. -----------------
  186. - HID: Rework host hid driver, basically everything changes
  187. 0.9.0 (2021-03-12)
  188. ==================
  189. Device Stack
  190. ------------
  191. Device Controller Driver (DCD)
  192. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  193. RP2040
  194. - Fix endpoint buffer reallocation overrun problem
  195. - Fix osal_pico queue overflow in initialization
  196. - Fix Isochronous endpoint buffer size in transfer
  197. - Optimize hardware endpoint struct to reduce RAM usage
  198. - Fix enum walkaround forever check for SE0 when pull up is disabled
  199. Sony CXD56
  200. - Pass the correct speed on Spresense
  201. - Fix setup processed flag
  202. NXP Transdimention
  203. - Update dcd_init() to reset controller to device mode
  204. USB Device Driver (USBD)
  205. ^^^^^^^^^^^^^^^^^^^^^^^^
  206. - Fix issue with status zlp (tud_control_status) is returned by class driver with SET/CLEAR_FEATURE for endpoint.
  207. - Correct endpoint size check for fullspeed bulk, can be 8, 16, 32, 64
  208. - Ack SET_INTERFACE even if it is not implemented by class driver.
  209. Device Class Driver
  210. ^^^^^^^^^^^^^^^^^^^
  211. DFU Runtime
  212. - rename dfu_rt to dfu_runtime for easy reading
  213. CDC
  214. - Add tud_cdc_send_break_cb() to support break request
  215. - Improve CDC receive, minor behavior changes: when tud_cdc_rx_wanted_cb() is invoked wanted_char may not be the last byte in the fifo
  216. HID
  217. - [Breaking] Add itf argument to hid API to support multiple instances, follow API has signature changes
  218. - tud_hid_descriptor_report_cb()
  219. - tud_hid_get_report_cb()
  220. - tud_hid_set_report_cb()
  221. - tud_hid_boot_mode_cb()
  222. - tud_hid_set_idle_cb()
  223. - Add report complete callback tud_hid_report_complete_cb() API
  224. - Add DPad/Hat support for HID Gamepad
  225. - `TUD_HID_REPORT_DESC_GAMEPAD()` now support 16 buttons, 2 joysticks, 1 hat/dpad
  226. - Add hid_gamepad_report_t along with `GAMEPAD_BUTTON_` and `GAMEPAD_HAT_` enum
  227. - Add Gamepad to hid_composite / hid_composite_freertos example
  228. MIDI
  229. - Fix dropping MIDI sysex message when fifo is full
  230. - Fix typo in tud_midi_write24(), make example less ambigous for cable and channel
  231. - Fix incorrect endpoint descriptor length, MIDI v1 use Audio v1 which has 9-byte endpoint descriptor (instead of 7)
  232. Host Stack
  233. ----------
  234. Host Controller Driver (HCD)
  235. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  236. - Add rhport to hcd_init()
  237. - Improve EHCI/OHCI driver abstraction
  238. - Move echi/ohci files to portable/
  239. - Rename hcd_lpc18_43 to hcd_transdimension
  240. - Sub hcd API with hcd_ehci_init(), hcd_ehci_register_addr()
  241. - Update NXP transdimention hcd_init() to reset controller to host mode
  242. - Ported hcd to rt10xx
  243. USB Host Driver (USBH)
  244. ^^^^^^^^^^^^^^^^^^^^^^
  245. - No noticeable changes to usbh
  246. Host Class Driver
  247. ^^^^^^^^^^^^^^^^^
  248. MSC
  249. - Rename tuh_msc_scsi_inquiry() to tuh_msc_inquiry()
  250. - Rename tuh_msc_mounted_cb/tuh_msc_unmounted_cb to tuh_msc_mount_cb/tuh_msc_unmount_cb to match device stack naming
  251. - Change tuh_msc_is_busy() to tuh_msc_ready()
  252. - Add read10 and write10 function: tuh_msc_read10(), tuh_msc_write10()
  253. - Read_Capacity is invoked as part of enumeration process
  254. - Add tuh_msc_get_block_count(), tuh_msc_get_block_size()
  255. - Add CFG_TUH_MSC_MAXLUN (default to 4) to hold lun capacities
  256. Others
  257. ------
  258. - Add basic support for rt-thread OS
  259. - Change zero bitfield length to more explicit padding
  260. - Build example now fetch required submodules on the fly while running `make` without prio submodule init for mcu drivers
  261. - Update pico-sdk to v1.1.0
  262. **New Boards**
  263. - Microchip SAM E54 Xplained Pro
  264. - LPCXpresso 55s28
  265. - LPCXpresso 18s37
  266. 0.8.0 (2021-02-05)
  267. ==================
  268. Device Controller Driver
  269. ------------------------
  270. - Added new device support for Raspberry Pi RP2040
  271. - Added new device support for NXP Kinetis KL25ZXX
  272. - Use dcd_event_bus_reset() with link speed to replace bus_signal
  273. - ESP32-S2:
  274. - Add bus suspend and wakeup support
  275. - SAMD21:
  276. - Fix (walkaround) samd21 setup_packet overflow by USB DMA
  277. - STM32 Synopsys:
  278. - Rework USB FIFO allocation scheme and allow RX FIFO size reduction
  279. - Sony CXD56
  280. - Update Update Spresense SDK to 2.0.2
  281. - Fix dcd issues with setup packets
  282. - Correct EP number for cdc_msc example
  283. USB Device
  284. ----------
  285. **USBD**
  286. - Rework usbd control transfer to have additional stage parameter for setup, data, status
  287. - Fix tusb_init() return true instead of TUSB_ERROR_NONE
  288. - Added new API tud_connected() that return true after device got out of bus reset and received the very first setup packet
  289. **Class Driver**
  290. - CDC
  291. - Allow to transmit data, even if the host does not support control line states i.e set DTR
  292. - HID
  293. - change default CFG_TUD_HID_EP_BUFSIZE from 16 to 64
  294. - MIDI
  295. - Fix midi sysex sending bug
  296. - MSC
  297. - Invoke only scsi complete callback after status transaction is complete.
  298. - Fix scsi_mode_sense6_t padding, which cause IAR compiler internal error.
  299. - USBTMC
  300. - Change interrupt endpoint example size to 8 instead of 2 for better compatibility with mcu
  301. **Example**
  302. - Support make from windows cmd.exe
  303. - Add HID Consumer Control (media keys) to hid_composite & hid_composite_freertos examples
  304. USB Host
  305. --------
  306. No noticeable changes to host stack
  307. New Boards
  308. ----------
  309. - NXP/Freescale Freedom FRDM-KL25Z
  310. - Feather Double M33 express
  311. - Raspberry Pi Pico
  312. - Adafruit Feather RP2040
  313. - Adafruit Itsy Bitsy RP2040
  314. - Adafruit QT RP2040
  315. - Adfruit Feather ESP32-S2
  316. - Adafruit Magtag 29" Eink
  317. - Adafruit Metro ESP32-S2
  318. - Adafruit PyBadge
  319. - Adafruit PyPortal
  320. - Great Scott Gadgets' LUNA D11 & D21
  321. 0.7.0 (2020-11-08)
  322. ==================
  323. Device Controller Driver
  324. ------------------------
  325. - Added new support for Espressif ESP32-S2
  326. - Added new support for Dialog DA1469x
  327. - Enhance STM32 Synopsys
  328. - Support bus events disconnection/suspend/resume/wakeup
  329. - Improve transfer performance with optimizing xfer and fifo size
  330. - Support Highspeed port (OTG_HS) with both internal and external PHY
  331. - Support multiple usb ports with rhport=1 is highspeed on selected MCUs e.g H743, F23. It is possible to have OTG_HS to run on Fullspeed PHY (e.g lacking external PHY)
  332. - Add ISO transfer, fix odd/even frame
  333. - Fix FIFO flush during stall
  334. - Implement dcd_edpt_close() API
  335. - Support F105, F107
  336. - Enhance STM32 fsdev
  337. - Improve dcd fifo allocation
  338. - Fix ISTR race condition
  339. - Support remap USB IRQ on supported MCUs
  340. - Implement dcd_edpt_close() API
  341. - Enhance NUC 505: enhance set configure behavior
  342. - Enhance SAMD
  343. - Fix race condition with setup packet
  344. - Add SAMD11 option `OPT_MCU_SAMD11`
  345. - Add SAME5x option `OPT_MCU_SAME5X`
  346. - Fix SAMG control data toggle and stall race condition
  347. - Enhance nRF
  348. - Fix hanged when tud_task() is called within critical section (disabled interrupt)
  349. - Fix disconnect bus event not submitted
  350. - Implement ISO transfer and dcd_edpt_close()
  351. USB Device
  352. ----------
  353. **USBD**
  354. - Add new class driver for **Bluetooth HCI** class driver with example can be found in [mynewt-tinyusb-example](https://github.com/hathach/mynewt-tinyusb-example) since it needs mynewt OS to run with.
  355. - Fix USBD endpoint usage racing condition with `usbd_edpt_claim()/usbd_edpt_release()`
  356. - Added `tud_task_event_ready()` and `osal_queue_empty()`. This API is needed to check before enter low power mode with WFI/WFE
  357. - Rename USB IRQ Handler to `dcd_int_handler()`. Application must define IRQ handler in which it calls this API.
  358. - Add `dcd_connect()` and `dcd_disconnect()` to enable/disable internal pullup on D+/D- on supported MCUs.
  359. - Add `usbd_edpt_open()`
  360. - Remove `dcd_set_config()`
  361. - Add *OPT_OS_CUMSTOM* as hook for application to overwrite and/or add their own OS implementation
  362. - Support SET_INTERFACE, GET_INTERFACE request
  363. - Add Logging for debug with optional uart/rtt/swo printf retarget or `CFG_TUSB_DEBUG_PRINTF` hook
  364. - Add IAR compiler support
  365. - Support multiple configuration descriptors. `TUD_CONFIG_DESCRIPTOR()` template has extra config_num as 1st argument
  366. - Improve USB Highspeed support with actual link speed detection with `dcd_event_bus_reset()`
  367. - Enhance class driver management
  368. - `usbd_driver_open()` add max length argument, and return length of interface (0 for not supported). Return value is used for finding appropriate driver
  369. - Add application implemented class driver via `usbd_app_driver_get_cb()`
  370. - IAD is handled to assign driver id
  371. - Added `tud_descriptor_device_qualifier_cb()` callback
  372. - Optimize `tu_fifo` bulk write/read transfer
  373. - Forward non-std control request to class driver
  374. - Let application handle Microsoft OS 1.0 Descriptors (the 0xEE index string)
  375. - Fix OSAL FreeRTOS yield from ISR
  376. **Class Drivers**
  377. - USBNET: remove ACM-EEM due to lack of support from host
  378. - USBTMC: fix descriptors when INT EP is disabled
  379. - CDC:
  380. - Send zero length packet for end of data when needed
  381. - Add `tud_cdc_tx_complete_cb()` callback
  382. - Change tud_cdc_n_write_flush() return number of bytes forced to transfer, and flush when writing enough data to fifo
  383. - MIDI:
  384. - Add packet interface
  385. - Add multiple jack descriptors
  386. - Fix MIDI driver for sysex
  387. - DFU Runtime: fix response to SET_INTERFACE and DFU_GETSTATUS request
  388. - Rename some configure macro to make it clear that those are used directly for endpoint transfer
  389. - CFG_TUD_HID_BUFSIZE to CFG_TUD_HID_EP_BUFSIZE
  390. - CFG_TUD_CDC_EPSIZE to CFG_TUD_CDC_EP_BUFSIZE
  391. - CFG_TUD_MSC_BUFSIZE to CFG_TUD_MSC_EP_BUFSIZE
  392. - CFG_TUD_MIDI_EPSIZE to CFG_TUD_MIDI_EP_BUFSIZE
  393. - HID:
  394. - Fix gamepad template descriptor
  395. - Add multiple HID interface API
  396. - Add extra comma to HID_REPORT_ID
  397. USB Host
  398. --------
  399. - Rework USB host stack (still work in progress)
  400. - Fix compile error with pipehandle
  401. - Rework usbh control and enumeration as non-blocking
  402. - Improve Hub, MSC, HID host driver
  403. Examples
  404. --------
  405. - Add new hid_composite_freertos
  406. - Add new dynamic_configuration to demonstrate how to switch configuration descriptors
  407. - Add new hid_multiple_interface
  408. - Enhance `net_lwip_webserver` example
  409. - Add multiple configuration: RNDIS for Windows, CDC-ECM for macOS (Linux will work with both)
  410. - Update lwip to STABLE-2_1_2_RELEASE for net_lwip_webserver
  411. - Added new Audio example: audio_test uac2_headsest
  412. New Boards
  413. ----------
  414. - Espressif ESP32-S2: saola_1, kaluga_1
  415. - STM32: F746 Nucleo, H743 Eval, H743 Nucleo, F723 discovery, stlink v3 mini, STM32L4r5 Nucleo
  416. - Dialog DA1469x dk pro and dk usb
  417. - Microchip: Great Scoot Gadgets' LUNA, samd11_xplained, D5035-01, atsamd21 xplained pro
  418. - nRF: ItsyBitsy nRF52840
  419. 0.6.0 (2020-03-30)
  420. ==================
  421. Added **CONTRIBUTORS.md** to give proper credit for contributors to the stack. Special thanks to `Nathan Conrad <https://github.com/pigrew>`__ , `Peter Lawrence <https://github.com/majbthrd>`__ , `William D. Jones <https://github.com/cr1901>`__ and `Sean Cross <https://github.com/xobs>`__ and others for spending their precious time to add lots of features and ports for this release.
  422. Added
  423. -----
  424. **MCU**
  425. - Added support for Microchip SAMG55
  426. - Added support for Nordic nRF52833
  427. - Added support for Nuvoton: NUC120, NUC121/NUC125, NUC126, NUC505
  428. - Added support for NXP LPC: 51Uxx, 54xxx, 55xx
  429. - Added support for NXP iMXRT: RT1011, RT1015, RT1021, RT1052, RT1062, RT1064
  430. - Added support for Sony CXD56 (Spresense)
  431. - Added support for STM32: L0, F0, F1, F2, F3, F4, F7, H7
  432. - Added support for TI MSP430
  433. - Added support for ValentyUSB's eptri
  434. **Class Driver**
  435. - Added DFU Runtime class driver
  436. - Added Network class driver with RNDIS, CDC-ECM, CDC-EEM (work in progress)
  437. - Added USBTMC class driver
  438. - Added WebUSB class driver using vendor-specific class
  439. - Added multiple instances support for CDC and MIDI
  440. - Added a handful of unit test with Ceedling.
  441. - Added LOG support for debugging with CFG_TUSB_DEBUG
  442. - Added `tud_descriptor_bos_cb()` for BOS descriptor (required for USB 2.1)
  443. - Added `dcd_edpt0_status_complete()` as optional API for DCD
  444. **Examples**
  445. Following examples are added:
  446. - board_test
  447. - cdc_dual_ports
  448. - dfu_rt
  449. - hid_composite
  450. - net_lwip_webserver
  451. - usbtmc
  452. - webusb_serial
  453. Changed
  454. -------
  455. - Changed `tud_descriptor_string_cb()` to have additional Language ID argument
  456. - Merged hal_nrf5x.c into dcd_nrf5x.c
  457. - Merged dcd_samd21.c and dcd_samd51.c into dcd_samd.c
  458. - Generalized dcd_stm32f4.c to dcd_synopsys.c
  459. - Changed cdc_msc_hid to cdc_msc (drop hid) due to limited endpoints number of some MCUs
  460. - Improved DCD SAMD stability, fix missing setup packet occasionally
  461. - Improved usbd/usbd_control with proper hanlding of zero-length packet (ZLP)
  462. - Improved STM32 DCD FSDev
  463. - Improved STM32 DCD Synopsys
  464. - Migrated CI from Travis to Github Action
  465. - Updated nrfx submodule to 2.1.0
  466. - Fixed mynewt osal queue definition
  467. - Fixed cdc_msc_freertos example build for all MCUs
  468. 0.5.0 (2019-06)
  469. ===============
  470. First release, device stack works great, host stack works but still need improvement.
  471. - Special thanks to @adafruit team, especially @tannewt to help out immensely to rework device stack: simplify osal & control transfer, adding SAMD21/SAMD51 ports, writing porting docs, adding MIDI class support etc...
  472. - Thanks to @cr1901 for adding STM32F4 port.
  473. - Thanks to @PTS93 and @todbot for HID raw API