mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-11 18:33:43 +00:00
514b436889
Named local labels shouldn't be used in LLVM because they might get duplicated resulting in multiple symbol definitions and a compiler error. Instead, use numeric labels.
53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
// +build nrf51
|
|
|
|
package ws2812
|
|
|
|
// This file implements the WS2812 protocol for 16MHz 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 16MHz
|
|
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/
|
|
// Note: timings have been increased slightly to also support ws2811 LEDs.
|
|
// T0H: 5 cycles or 312.5ns
|
|
// T0L: 14 cycles or 875.0ns -> together 19 cycles or 1187.5ns
|
|
// T1H: 11 cycles or 687.5ns
|
|
// T1H: 8 cycles or 500.0ns -> together 19 cycles or 1187.5ns
|
|
value := uint32(c) << 24
|
|
arm.AsmFull(`
|
|
1: @ send_bit
|
|
str {maskSet}, {portSet} @ [2] T0H and T0L start here
|
|
nop @ [1]
|
|
lsls {value}, #1 @ [1]
|
|
bcs.n 2f @ [1/3] skip_store
|
|
str {maskClear}, {portClear} @ [2] T0H -> T0L transition
|
|
2: @ skip_store
|
|
nop @ [4]
|
|
nop
|
|
nop
|
|
nop
|
|
str {maskClear}, {portClear} @ [2] T1H -> T1L transition
|
|
nop @ [2]
|
|
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
|
|
}
|