This application note aims to explain architecture and understanding how to develop driver for addressable LEDs, such as WS2811, WS2812, WS2812B or any other matching protocol specifications.
Github supports ToC by default. It is available in the top-left corner of this document.
WS2811 and WS2812 protocol is specific one and has defined values:
800 kHz
, or 1.25us
pulse length for each bit24
pulses for each led, that's 30us
for one LED1
or 0
) consists of high and low part, with different lengthMinimum reset pulse length depends on WS281x device. Check datasheet for your particular unit. WS2812B says
> 50us
, while WS2811 says> 280us
.
Several STM32 timers (TIM) have support for Capture/Compare channels, connect to output pins, and being able to generate PWM pulses.
According to protocol (also explained above), timer should be able to generate 3
type of pulses:
1
with ~3/4
of time being high and low for the rest of the time0
with ~1/4
of time being high and low for the rest of the timeFurthemore, timer should be configured to generate update event for 800 kHz
, with auto-reload register (TIMx->ARR
) set to TIMx->ARR = timer_kernel_clock / 800000 - 1
and prescaler = 0
for maximum resolution.
Timer does not support a look-up table to know if logical bit 1
or 0
is next, hence we will utilize DMA feature to implement this task.
Timer channel allows DMA requests to load next value to channel compare register, and effectively implement look-up table with data transfer from memory to timer peripheral.
STM32 Timer Cookbook is a great starting point to understand how timers work in STM32s.
DMA controllers in STM32s support various operations, one of them being super handy for our WS LED driver, called circular operation mode. Circular mode will continuously transmit data from memory to peripheral (or, in general, can also go opposite direction) and periodically send transfer-complete or half-transfer-complete interrupts to the application.
We will use HT and TC events extensively, as they will be use to prepare data for next operations to transfer all bits for all leds. More explained in the later sections.
List of some useful STM32 DMA application notes
Memory requirement for one LED strip is split to:
3 * leds_count
to store read, green & blue colors for each led1
working buffer with size of 2
leds (48
elements), each element of 16/32
bits, depending on used TIM peripheralTo put all together, application developer must:
Examples are extensively commented and should provide necessary understanding for application development
Examples can be used as reference code to implement your own LED driver with your own STM32.
STM32 family | Board name | TIM & CH | GPIO | DMA settings |
---|---|---|---|---|
STM32G0xx | NUCLEO-G0B1RE |
TIM2 CH4 |
PA3 |
DMA2 , Channel 5 |