Select one of the symbols to view example projects that use it.
 
Outline
#include "hardware/pio.h"
#define ws2812_wrap_target
#define ws2812_wrap
#define ws2812_pio_version
#define ws2812_T1
#define ws2812_T2
#define ws2812_T3
ws2812_program_instructions
ws2812_program
ws2812_program_get_default_config(uint)
#include "hardware/clocks.h"
ws2812_program_init(PIO, uint, uint, uint, float, bool)
#define ws2812_parallel_wrap_target
#define ws2812_parallel_wrap
#define ws2812_parallel_pio_version
#define ws2812_parallel_T1
#define ws2812_parallel_T2
#define ws2812_parallel_T3
ws2812_parallel_program_instructions
ws2812_parallel_program
ws2812_parallel_program_get_default_config(uint)
#include "hardware/clocks.h"
ws2812_parallel_program_init(PIO, uint, uint, uint, uint, float)
Files
loading...
SourceVuRaspberry Pi Pico SDK and Examplesws2812 samplegenerated/ws2812.pio.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
// -------------------------------------------------- // // This file is autogenerated by pioasm; do not edit! // // -------------------------------------------------- // #pragma once #if !PICO_NO_HARDWARE #include "hardware/pio.h" #endif // ------ // // ws2812 // // ------ // #define ws2812_wrap_target 0 #define ws2812_wrap 3 #define ws2812_pio_version 0 #define ws2812_T1 2 #define ws2812_T2 5 #define ws2812_T3 3 6 defines static const uint16_t ws2812_program_instructions[] = { // .wrap_target 0x6221, // 0: out x, 1 side 0 [2] 0x1123, // 1: jmp !x, 3 side 1 [1] 0x1400, // 2: jmp 0 side 1 [4] 0xa442, // 3: nop side 0 [4] // .wrap ...}; #if !PICO_NO_HARDWARE static const struct pio_program ws2812_program = { .instructions = ws2812_program_instructions, .length = 4, .origin = -1, .pio_version = 0, #if PICO_PIO_VERSION > 0 .used_gpio_ranges = 0x0 #endif ...}; static inline pio_sm_config ws2812_program_get_default_config(uint offset) { pio_sm_config c = pio_get_default_sm_config(); sm_config_set_wrap(&c, offset + ws2812_wrap_target, offset + ws2812_wrap); sm_config_set_sideset(&c, 1, false, false); return c; }{ ... } #include "hardware/clocks.h" static inline void ws2812_program_init(PIO pio, uint sm, uint offset, uint pin, float freq, bool rgbw) { pio_gpio_init(pio, pin); pio_sm_set_consecutive_pindirs(pio, sm, pin, 1, true); pio_sm_config c = ws2812_program_get_default_config(offset); sm_config_set_sideset_pins(&c, pin); sm_config_set_out_shift(&c, false, true, rgbw ? 32 : 24); sm_config_set_fifo_join(&c, PIO_FIFO_JOIN_TX); int cycles_per_bit = ws2812_T1 + ws2812_T2 + ws2812_T3; float div = clock_get_hz(clk_sys) / (freq * cycles_per_bit); sm_config_set_clkdiv(&c, div); pio_sm_init(pio, sm, offset, &c); pio_sm_set_enabled(pio, sm, true); }{ ... } /* ... */#endif // --------------- // // ws2812_parallel // // --------------- // #define ws2812_parallel_wrap_target 0 #define ws2812_parallel_wrap 3 #define ws2812_parallel_pio_version 0 #define ws2812_parallel_T1 2 #define ws2812_parallel_T2 5 #define ws2812_parallel_T3 3 6 defines static const uint16_t ws2812_parallel_program_instructions[] = { // .wrap_target 0x6020, // 0: out x, 32 0xa10b, // 1: mov pins, !null [1] 0xa401, // 2: mov pins, x [4] 0xa103, // 3: mov pins, null [1] // .wrap ...}; #if !PICO_NO_HARDWARE static const struct pio_program ws2812_parallel_program = { .instructions = ws2812_parallel_program_instructions, .length = 4, .origin = -1, .pio_version = 0, #if PICO_PIO_VERSION > 0 .used_gpio_ranges = 0x0 #endif ...}; static inline pio_sm_config ws2812_parallel_program_get_default_config(uint offset) { pio_sm_config c = pio_get_default_sm_config(); sm_config_set_wrap(&c, offset + ws2812_parallel_wrap_target, offset + ws2812_parallel_wrap); return c; }{ ... } #include "hardware/clocks.h" static inline void ws2812_parallel_program_init(PIO pio, uint sm, uint offset, uint pin_base, uint pin_count, float freq) { for(uint i=pin_base; i<pin_base+pin_count; i++) { pio_gpio_init(pio, i); }for (uint i=pin_base; i pio_sm_set_consecutive_pindirs(pio, sm, pin_base, pin_count, true); pio_sm_config c = ws2812_parallel_program_get_default_config(offset); sm_config_set_out_shift(&c, true, true, 32); sm_config_set_out_pins(&c, pin_base, pin_count); sm_config_set_set_pins(&c, pin_base, pin_count); sm_config_set_fifo_join(&c, PIO_FIFO_JOIN_TX); int cycles_per_bit = ws2812_parallel_T1 + ws2812_parallel_T2 + ws2812_parallel_T3; float div = clock_get_hz(clk_sys) / (freq * cycles_per_bit); sm_config_set_clkdiv(&c, div); pio_sm_init(pio, sm, offset, &c); pio_sm_set_enabled(pio, sm, true); }{ ... } /* ... */#endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.