summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/getting_started.rst10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/getting_started.rst b/docs/getting_started.rst
index 84663e486..a3d36a55c 100644
--- a/docs/getting_started.rst
+++ b/docs/getting_started.rst
@@ -7,7 +7,9 @@ This guide will get you up and running with TinyUSB quickly. We'll start with wo
Quick Start Examples
====================
-The fastest way to understand TinyUSB is to see it working. These examples demonstrate core functionality and can be built immediately. We'll assume you are using the stm32f407disco board.
+The fastest way to understand TinyUSB is to see it working. These examples demonstrate core functionality and can be built immediately.
+
+We'll assume you are using the stm32f407disco board. For other boards, see ``Board Support Packages`` below.
Simple Device Example
---------------------
@@ -27,7 +29,7 @@ The `cdc_msc <https://github.com/hathach/tinyusb/tree/master/examples/device/cdc
$ cd tinyusb
$ python tools/get_deps.py stm32f4 # Download dependencies
$ cd examples/device/cdc_msc
- $ make BOARD=stm32f407disco all flash
+ $ make BOARD=stm32f407disco all flash # for CMake based platforms see note below
Connect to your computer and you'll see both a new serial port and a small USB drive appear.
@@ -48,7 +50,7 @@ The `cdc_msc_hid <https://github.com/hathach/tinyusb/tree/master/examples/host/c
$ python tools/get_deps.py stm32f4 # If not done already
$ cd examples/host/cdc_msc_hid
- $ make BOARD=stm32f407disco all flash
+ $ make BOARD=stm32f407disco all flash # for CMake platforms see note below
Connect USB devices to see enumeration messages and device-specific interactions in the serial output.
@@ -133,6 +135,8 @@ Development Tips
**CMake build system:**
+Used by, e.g., RP2040.
+
.. code-block:: bash
$ mkdir build && cd build