summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorStefan Kerkmann <karlk90@pm.me>2022-11-09 21:58:15 +0100
committerGitHub <noreply@github.com>2022-11-10 07:58:15 +1100
commit27dec8d16d8e47da246ce68827c8ce5a433dcb91 (patch)
treeefeb53ee16f601eced9f2b0626369c22ffc3c3c2 /docs
parentbc6f8dc8b0822e5e03893eacffa42a7badb4c2fa (diff)
[Core] Allow custom timings for WS2812 PIO driver (#18006)
Diffstat (limited to 'docs')
-rw-r--r--docs/ws2812_driver.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ws2812_driver.md b/docs/ws2812_driver.md
index 54e6e77d81..5942da28d1 100644
--- a/docs/ws2812_driver.md
+++ b/docs/ws2812_driver.md
@@ -175,7 +175,7 @@ Configure the hardware via your config.h:
#define WS2812_PIO_USE_PIO1 // Force the usage of PIO1 peripheral, by default the WS2812 implementation uses the PIO0 peripheral
```
-The WS2812 PIO programm uses 1 state machine, 4 instructions and does not use any interrupt handlers.
+The WS2812 PIO programm uses 1 state machine, 6 instructions and one DMA interrupt handler callback. Due to the implementation the time resolution for this drivers is 50ns, any value not specified in this interval will be rounded to the next matching interval.
### Push Pull and Open Drain Configuration
The default configuration is a push pull on the defined pin.