ws2812: add RP2350 support

Adding 150MHz support for the RP2350
This commit is contained in:
Ayke van Laethem
2025-06-16 17:10:53 +02:00
committed by deadprogram
parent ae9e8f915e
commit 28d87eb0c5
3 changed files with 364 additions and 1 deletions
+3
View File
@@ -31,6 +31,9 @@ func (d Device) WriteByte(c byte) error {
case 125_000_000: // 125 MHz e.g. rp2040 originally
d.writeByte125(c)
return nil
case 150_000_000: // 150MHz, e.g. rp2350
d.writeByte150(c)
return nil
case 168_000_000: // 168MHz, e.g. stm32f405
d.writeByte168(c)
return nil