123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- #include <avr/interrupt.h>
- #include <avr/io.h>
- #include <util/delay.h>
- #include "ws2812.h"
- #include "pin_defs.h"
- #define pinmask(pin) (_BV((pin)&0xF))
- static inline void ws2812_sendarray_mask(uint8_t *data, uint16_t datlen, uint8_t masklo, uint8_t maskhi);
- void ws2812_setleds(LED_TYPE *ledarray, uint16_t number_of_leds) {
- DDRx_ADDRESS(RGB_DI_PIN) |= pinmask(RGB_DI_PIN);
- uint8_t masklo = ~(pinmask(RGB_DI_PIN)) & PORTx_ADDRESS(RGB_DI_PIN);
- uint8_t maskhi = pinmask(RGB_DI_PIN) | PORTx_ADDRESS(RGB_DI_PIN);
- ws2812_sendarray_mask((uint8_t *)ledarray, number_of_leds * sizeof(LED_TYPE), masklo, maskhi);
- _delay_us(WS2812_TRST_US);
- }
- #define w_fixedlow 2
- #define w_fixedhigh 4
- #define w_fixedtotal 8
- #define w_zerocycles (((F_CPU / 1000) * WS2812_T0H) / 1000000)
- #define w_onecycles (((F_CPU / 1000) * WS2812_T1H + 500000) / 1000000)
- #define w_totalcycles (((F_CPU / 1000) * WS2812_TIMING + 500000) / 1000000)
- #if w_zerocycles >= w_fixedlow
- # define w1_nops (w_zerocycles - w_fixedlow)
- #else
- # define w1_nops 0
- #endif
- #if w_onecycles >= (w_fixedhigh + w1_nops)
- # define w2_nops (w_onecycles - w_fixedhigh - w1_nops)
- #else
- # define w2_nops 0
- #endif
- #if w_totalcycles >= (w_fixedtotal + w1_nops + w2_nops)
- # define w3_nops (w_totalcycles - w_fixedtotal - w1_nops - w2_nops)
- #else
- # define w3_nops 0
- #endif
- #define w_lowtime ((w1_nops + w_fixedlow) * 1000000) / (F_CPU / 1000)
- #if w_lowtime > 550
- # error "Light_ws2812: Sorry, the clock speed is too low. Did you set F_CPU correctly?"
- #elif w_lowtime > 450
- # warning "Light_ws2812: The timing is critical and may only work on WS2812B, not on WS2812(S)."
- # warning "Please consider a higher clockspeed, if possible"
- #endif
- #define w_nop1 "nop \n\t"
- #define w_nop2 "rjmp .+0 \n\t"
- #define w_nop4 w_nop2 w_nop2
- #define w_nop8 w_nop4 w_nop4
- #define w_nop16 w_nop8 w_nop8
- static inline void ws2812_sendarray_mask(uint8_t *data, uint16_t datlen, uint8_t masklo, uint8_t maskhi) {
- uint8_t curbyte, ctr, sreg_prev;
- sreg_prev = SREG;
- cli();
- while (datlen--) {
- curbyte = (*data++);
- asm volatile(" ldi %0,8 \n\t"
- "loop%=: \n\t"
- " out %2,%3 \n\t"
- #if (w1_nops & 1)
- w_nop1
- #endif
- #if (w1_nops & 2)
- w_nop2
- #endif
- #if (w1_nops & 4)
- w_nop4
- #endif
- #if (w1_nops & 8)
- w_nop8
- #endif
- #if (w1_nops & 16)
- w_nop16
- #endif
- " sbrs %1,7 \n\t"
- " out %2,%4 \n\t"
- " lsl %1 \n\t"
- #if (w2_nops & 1)
- w_nop1
- #endif
- #if (w2_nops & 2)
- w_nop2
- #endif
- #if (w2_nops & 4)
- w_nop4
- #endif
- #if (w2_nops & 8)
- w_nop8
- #endif
- #if (w2_nops & 16)
- w_nop16
- #endif
- " out %2,%4 \n\t"
- #if (w3_nops & 1)
- w_nop1
- #endif
- #if (w3_nops & 2)
- w_nop2
- #endif
- #if (w3_nops & 4)
- w_nop4
- #endif
- #if (w3_nops & 8)
- w_nop8
- #endif
- #if (w3_nops & 16)
- w_nop16
- #endif
- " dec %0 \n\t"
- " brne loop%=\n\t"
- : "=&d"(ctr)
- : "r"(curbyte), "I"(_SFR_IO_ADDR(PORTx_ADDRESS(RGB_DI_PIN))), "r"(maskhi), "r"(masklo));
- }
- SREG = sreg_prev;
- }
|