mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-11 10:23:44 +00:00
7b56e61d52
Call a special __tinygo_ws2812_write_byte function to send a single byte.
82 lines
1.6 KiB
Go
82 lines
1.6 KiB
Go
// +build atsamd21
|
|
|
|
package ws2812
|
|
|
|
// This file implements the WS2812 protocol for 48MHz Cortex-M0
|
|
// microcontrollers.
|
|
|
|
import (
|
|
"device/arm"
|
|
)
|
|
|
|
// Send a single byte using the WS2812 protocol.
|
|
func (d Device) WriteByte(c byte) error {
|
|
// For the Cortex-M0 at 48MHz
|
|
portSet, maskSet := d.Pin.PortMaskSet()
|
|
portClear, maskClear := d.Pin.PortMaskClear()
|
|
|
|
// See:
|
|
// https://wp.josh.com/2014/05/13/ws2812-neopixels-are-not-so-finicky-once-you-get-to-know-them/
|
|
// T0H: 10 cycles or 208.3ns
|
|
// T0L: 39 cycles or 812.5ns -> together 49 cycles or 1020.8ns
|
|
// T1H: 27 cycles or 562.5ns
|
|
// T1L: 22 cycles or 458.3ns -> together 49 cycles or 1020.8ns
|
|
value := uint32(c) << 24
|
|
arm.AsmFull(`
|
|
1: @ send_bit
|
|
str {maskSet}, {portSet} @ [2] T0H and T0L start here
|
|
lsls {value}, #1 @ [1]
|
|
nop @ [6]
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
bcs.n 2f @ [1/3] skip_store
|
|
str {maskClear}, {portClear} @ [2] T0H -> T0L transition
|
|
2: @ skip_store
|
|
nop @ [15]
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
str {maskClear}, {portClear} @ [2] T1H -> T1L transition
|
|
nop @ [16]
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
subs {i}, #1 @ [1]
|
|
bne.n 1b @ [1/3] send_bit
|
|
`, map[string]interface{}{
|
|
"value": value,
|
|
"i": 8,
|
|
"maskSet": maskSet,
|
|
"portSet": portSet,
|
|
"maskClear": maskClear,
|
|
"portClear": portClear,
|
|
})
|
|
return nil
|
|
}
|