From 7b8c53bf39489c01f2492c69d95de8df2d4e5d2f Mon Sep 17 00:00:00 2001
From: Ian <code@ianrees.nz>
Date: Sun, 7 Aug 2022 11:00:50 +1200
Subject: [PATCH 1/2] Add Development+Testing section to README.md

---
 README.md | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 048c6a2..80ac39c 100644
--- a/README.md
+++ b/README.md
@@ -37,9 +37,18 @@ Class crates
 * [usbd-hid](https://github.com/twitchyliquid64/usbd-hid) [![Crates.io](https://img.shields.io/crates/v/usbd-hid.svg)](https://crates.io/crates/usbd-hid) - HID class
 * [usbd-serial](https://github.com/mvirkkunen/usbd-serial) [![Crates.io](https://img.shields.io/crates/v/usbd-serial.svg)](https://crates.io/crates/usbd-serial) - CDC-ACM serial port class
 
+Development
+-----------
+
+### Testing
+
+Testing `usb-device` involves a test suite running on a host computer, connected via USB to a target computer (microcontroller) which provides a test device.  `usb-device` provides interfaces to hardware drivers, but it does not provide any hardware drivers, so external crates are required to run the test suite on specific hardware:
+
+* [stm32-usbd-tests](https://github.com/Disasm/stm32-usbd-tests) for STM32 parts.
+* [test-usb-device](https://github.com/ianrrees/test-usb-device) for ATSAMD parts.
 
 Others
 ------
 
 Other implementations for USB in Rust
-* [embassy-usb](https://github.com/embassy-rs/embassy/blob/master/embassy-usb/src/driver.rs), an async variant.
\ No newline at end of file
+* [embassy-usb](https://github.com/embassy-rs/embassy/blob/master/embassy-usb/src/driver.rs), an async variant.

From 9cd6aca9ea4d6f24f06fd3b128217fb5c7fafdab Mon Sep 17 00:00:00 2001
From: Ian <code@ianrees.nz>
Date: Mon, 8 Aug 2022 08:56:21 +1200
Subject: [PATCH 2/2] Add pointer to second STM32 test repo

Co-authored-by: Vadim Kaushan <admin@disasm.info>
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 80ac39c..4525753 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@ Development
 
 Testing `usb-device` involves a test suite running on a host computer, connected via USB to a target computer (microcontroller) which provides a test device.  `usb-device` provides interfaces to hardware drivers, but it does not provide any hardware drivers, so external crates are required to run the test suite on specific hardware:
 
-* [stm32-usbd-tests](https://github.com/Disasm/stm32-usbd-tests) for STM32 parts.
+* [stm32-usbd-tests](https://github.com/Disasm/stm32-usbd-tests) and [usb-otg-workspace](https://github.com/Disasm/usb-otg-workspace) for STM32 parts.
 * [test-usb-device](https://github.com/ianrrees/test-usb-device) for ATSAMD parts.
 
 Others