diff options
author | Álvaro A. Volpato <alvaro.volpato@usp.br> | 2021-11-25 17:13:16 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 20:13:16 +0000 |
commit | f889e26ed7def6efd122089b99beb38746587827 (patch) | |
tree | 940a446e4e3237882668fc305eaf96df35a6b9a7 /docs | |
parent | 4bac5f53d864a77a6f0fa8a2a046ed7748824ecc (diff) |
Documentation typo fix (#15298)
* Fix WS2812 driver docs typo
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ws2812_driver.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ws2812_driver.md b/docs/ws2812_driver.md index 289535aa9e..8acac0b3aa 100644 --- a/docs/ws2812_driver.md +++ b/docs/ws2812_driver.md @@ -56,11 +56,11 @@ You can tune these parameters through the definition of the following macros: | Macro |Default | AVR | ARM | |---------------------|--------------------------------------------|--------------------|--------------------| -|`WS2812_TIMING |`1250` | :heavy_check_mark: | :heavy_check_mark: | +|`WS2812_TIMING` |`1250` | :heavy_check_mark: | :heavy_check_mark: | |`WS2812_T0H` |`350` | :heavy_check_mark: | :heavy_check_mark: | |`WS2812_T0L` |`WS2812_TIMING - WS2812_T0H` | | :heavy_check_mark: | |`WS2812_T1H` |`900` | :heavy_check_mark: | :heavy_check_mark: | -|`WS2812_T1L` |`WS2812_TIMING - WS2812_T1L` | | :heavy_check_mark: | +|`WS2812_T1L` |`WS2812_TIMING - WS2812_T1H` | | :heavy_check_mark: | ### I2C Targeting boards where WS2812 support is offloaded to a 2nd MCU. Currently the driver is limited to AVR given the known consumers are ps2avrGB/BMC. To configure it, add this to your rules.mk: |