diff options
| author | Ha Thach <[email protected]> | 2021-08-06 01:06:22 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-06 01:06:22 +0700 |
| commit | b8055aeccf0bf53e983166e2ae3b046e0d07521e (patch) | |
| tree | 0ced13554f92912e79cf199d02b770ac96ef3cf9 | |
| parent | 82d73d3350fa642e851f63b9ec584badbd7002d9 (diff) | |
| parent | 6be2d46b53cba37ad9cbfb1737a446bc76ec7fd4 (diff) | |
Merge pull request #1000 from hathach/more-doc
More doc
| -rw-r--r-- | .readthedocs.yaml (renamed from .readthedocs.yml) | 5 | ||||
| -rw-r--r-- | README.rst | 4 | ||||
| -rw-r--r-- | examples/device/webusb_serial/src/main.c | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/.readthedocs.yml b/.readthedocs.yaml index 215b5fed1..e83cd90fd 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yaml @@ -11,3 +11,8 @@ python: version: 3.8 install: - requirements: docs/requirements.txt + +submodules: + include: [] + recursive: false +
\ No newline at end of file diff --git a/README.rst b/README.rst index 9e7c3139b..2119c26d2 100644 --- a/README.rst +++ b/README.rst @@ -8,7 +8,7 @@ embedded system, designed to be memory-safe with no dynamic allocation and thread-safe with all interrupt events are deferred then handled in the non-ISR task function. -Please take a look at the online `documentation <https://www.tinyusb.org/>`__. +Please take a look at the online `documentation <https://docs.tinyusb.org/>`__. .. figure:: docs/assets/stack.svg :width: 500px @@ -122,7 +122,7 @@ in your project. .. |Build Status| image:: https://github.com/hathach/tinyusb/workflows/Build/badge.svg :target: https://github.com/hathach/tinyusb/actions .. |Documentation Status| image:: https://readthedocs.org/projects/tinyusb/badge/?version=latest - :target: https://openinput.readthedocs.io/en/latest/?badge=latest + :target: https://docs.tinyusb.org/en/latest/?badge=latest .. |License| image:: https://img.shields.io/badge/license-MIT-brightgreen.svg :target: https://opensource.org/licenses/MIT diff --git a/examples/device/webusb_serial/src/main.c b/examples/device/webusb_serial/src/main.c index c85b3cc9a..aba4aedff 100644 --- a/examples/device/webusb_serial/src/main.c +++ b/examples/device/webusb_serial/src/main.c @@ -71,7 +71,7 @@ enum { static uint32_t blink_interval_ms = BLINK_NOT_MOUNTED; -#define URL "www.tinyusb.org/examples/webusb-serial" +#define URL "example.tinyusb.org/webusb-serial/" const tusb_desc_webusb_url_t desc_url = { |
