commit 9bbd50c4f52889501cacc5b319a7ff5af776aeef Author: Jonathan Wyss Date: Tue Feb 27 12:42:35 2024 +0100 First commit diff --git a/avr_adc.c b/avr_adc.c new file mode 100644 index 0000000..d4e6213 --- /dev/null +++ b/avr_adc.c @@ -0,0 +1,52 @@ +//setup adc for an attiny85 +// +#include +#include"avr_adc.h" +#define _BS(bit) (1< +#include "fix_fft.h" + + +//#include depreacted + +/* fix_fft.c - Fixed-point in-place Fast Fourier Transform */ +/* + All data are fixed-point short integers, in which -32768 + to +32768 represent -1.0 to +1.0 respectively. Integer + arithmetic is used for speed, instead of the more natural + floating-point. + + For the forward FFT (time -> freq), fixed scaling is + performed to prevent arithmetic overflow, and to map a 0dB + sine/cosine wave (i.e. amplitude = 32767) to two -6dB freq + coefficients. The return value is always 0. + + For the inverse FFT (freq -> time), fixed scaling cannot be + done, as two 0dB coefficients would sum to a peak amplitude + of 64K, overflowing the 32k range of the fixed-point integers. + Thus, the fix_fft() routine performs variable scaling, and + returns a value which is the number of bits LEFT by which + the output must be shifted to get the actual amplitude + (i.e. if fix_fft() returns 3, each value of fr[] and fi[] + must be multiplied by 8 (2**3) for proper scaling. + Clearly, this cannot be done within fixed-point short + integers. In practice, if the result is to be used as a + filter, the scale_shift can usually be ignored, as the + result will be approximately correctly normalized as is. + + Written by: Tom Roberts 11/8/89 + Made portable: Malcolm Slaney 12/15/94 malcolm@interval.com + Enhanced: Dimitrios P. Bouras 14 Jun 2006 dbouras@ieee.org + Modified for 8bit values David Keller 10.10.2010 +*/ + + +#define N_WAVE 256 /* full length of Sinewave[] */ +#define LOG2_N_WAVE 8 /* log2(N_WAVE) */ + + + + +/* + Since we only use 3/4 of N_WAVE, we define only + this many samples, in order to conserve data space. +*/ + + +//typedef uint8_t PROGMEM prog_uint8_t; +const uint8_t Sinewave[N_WAVE-N_WAVE/4] PROGMEM = { +0, 3, 6, 9, 12, 15, 18, 21, +24, 28, 31, 34, 37, 40, 43, 46, +48, 51, 54, 57, 60, 63, 65, 68, +71, 73, 76, 78, 81, 83, 85, 88, +90, 92, 94, 96, 98, 100, 102, 104, +106, 108, 109, 111, 112, 114, 115, 117, +118, 119, 120, 121, 122, 123, 124, 124, +125, 126, 126, 127, 127, 127, 127, 127, + +127, 127, 127, 127, 127, 127, 126, 126, +125, 124, 124, 123, 122, 121, 120, 119, +118, 117, 115, 114, 112, 111, 109, 108, +106, 104, 102, 100, 98, 96, 94, 92, +90, 88, 85, 83, 81, 78, 76, 73, +71, 68, 65, 63, 60, 57, 54, 51, +48, 46, 43, 40, 37, 34, 31, 28, +24, 21, 18, 15, 12, 9, 6, 3, + +0, -3, -6, -9, -12, -15, -18, -21, +-24, -28, -31, -34, -37, -40, -43, -46, +-48, -51, -54, -57, -60, -63, -65, -68, +-71, -73, -76, -78, -81, -83, -85, -88, +-90, -92, -94, -96, -98, -100, -102, -104, +-106, -108, -109, -111, -112, -114, -115, -117, +-118, -119, -120, -121, -122, -123, -124, -124, +-125, -126, -126, -127, -127, -127, -127, -127, + +/*-127, -127, -127, -127, -127, -127, -126, -126, +-125, -124, -124, -123, -122, -121, -120, -119, +-118, -117, -115, -114, -112, -111, -109, -108, +-106, -104, -102, -100, -98, -96, -94, -92, +-90, -88, -85, -83, -81, -78, -76, -73, +-71, -68, -65, -63, -60, -57, -54, -51, +-48, -46, -43, -40, -37, -34, -31, -28, +-24, -21, -18, -15, -12, -9, -6, -3, */ +}; + + + + + + +/* + FIX_MPY() - fixed-point multiplication & scaling. + Substitute inline assembly for hardware-specific + optimization suited to a particluar DSP processor. + Scaling ensures that result remains 16-bit. +*/ +static inline char FIX_MPY(char a, char b) +{ + + //Serial.println(a); + //Serial.println(b); + + + /* shift right one less bit (i.e. 15-1) */ + int c = ((int)a * (int)b) >> 6; + /* last bit shifted out = rounding-bit */ + b = c & 0x01; + /* last shift + rounding bit */ + a = (c >> 1) + b; + + /* + Serial.println(Sinewave[3]); + Serial.println(c); + Serial.println(a); + while(1);*/ + + return a; +} + +/* + fix_fft() - perform forward/inverse fast Fourier transform. + fr[n],fi[n] are real and imaginary arrays, both INPUT AND + RESULT (in-place FFT), with 0 <= n < 2**m; set inverse to + 0 for forward transform (FFT), or 1 for iFFT. +*/ +int fix_fft(char fr[], char fi[], int m, int inverse) +{ + int mr, nn, i, j, l, k, istep, n, scale, shift; + char qr, qi, tr, ti, wr, wi; + + n = 1 << m; + + /* max FFT size = N_WAVE */ + if (n > N_WAVE) + return -1; + + mr = 0; + nn = n - 1; + scale = 0; + + /* decimation in time - re-order data */ + for (m=1; m<=nn; ++m) { + l = n; + do { + l >>= 1; + } while (mr+l > nn); + mr = (mr & (l-1)) + l; + + if (mr <= m) + continue; + tr = fr[m]; + fr[m] = fr[mr]; + fr[mr] = tr; + ti = fi[m]; + fi[m] = fi[mr]; + fi[mr] = ti; + } + + l = 1; + k = LOG2_N_WAVE-1; + while (l < n) { + if (inverse) { + /* variable scaling, depending upon data */ + shift = 0; + for (i=0; i 16383 || m > 16383) { + shift = 1; + break; + } + } + if (shift) + ++scale; + } else { + /* + fixed scaling, for proper normalization -- + there will be log2(n) passes, so this results + in an overall factor of 1/n, distributed to + maximize arithmetic accuracy. + */ + shift = 1; + } + /* + it may not be obvious, but the shift will be + performed on each data point exactly once, + during this pass. + */ + istep = l << 1; + for (m=0; m>= 1; + wi >>= 1; + } + for (i=m; i>= 1; + qi >>= 1; + } + fr[j] = qr - tr; + fi[j] = qi - ti; + fr[i] = qr + tr; + fi[i] = qi + ti; + } + } + --k; + l = istep; + } + return scale; +} + +/* + fix_fftr() - forward/inverse FFT on array of real numbers. + Real FFT/iFFT using half-size complex FFT by distributing + even/odd samples into real/imaginary arrays respectively. + In order to save data space (i.e. to avoid two arrays, one + for real, one for imaginary samples), we proceed in the + following two steps: a) samples are rearranged in the real + array so that all even samples are in places 0-(N/2-1) and + all imaginary samples in places (N/2)-(N-1), and b) fix_fft + is called with fr and fi pointing to index 0 and index N/2 + respectively in the original array. The above guarantees + that fix_fft "sees" consecutive real samples as alternating + real and imaginary samples in the complex array. +*/ +int fix_fftr(char f[], int m, int inverse) +{ + int i, N = 1<<(m-1), scale = 0; + char tt, *fr=f, *fi=&f[N]; + + if (inverse) + scale = fix_fft(fi, fr, m-1, inverse); + for (i=1; i //depreacted included in arduino.h + + + + +/* + fix_fft() - perform forward/inverse fast Fourier transform. + fr[n],fi[n] are real and imaginary arrays, both INPUT AND + RESULT (in-place FFT), with 0 <= n < 2**m; set inverse to + 0 for forward transform (FFT), or 1 for iFFT. +*/ +int fix_fft(char fr[], char fi[], int m, int inverse); + + + +/* + fix_fftr() - forward/inverse FFT on array of real numbers. + Real FFT/iFFT using half-size complex FFT by distributing + even/odd samples into real/imaginary arrays respectively. + In order to save data space (i.e. to avoid two arrays, one + for real, one for imaginary samples), we proceed in the + following two steps: a) samples are rearranged in the real + array so that all even samples are in places 0-(N/2-1) and + all imaginary samples in places (N/2)-(N-1), and b) fix_fft + is called with fr and fi pointing to index 0 and index N/2 + respectively in the original array. The above guarantees + that fix_fft "sees" consecutive real samples as alternating + real and imaginary samples in the complex array. +*/ +int fix_fftr(char f[], int m, int inverse); +static inline char FIX_MPY(char a,char b); + + + +#endif diff --git a/fix_fft.o b/fix_fft.o new file mode 100644 index 0000000..2e3f4cf Binary files /dev/null and b/fix_fft.o differ diff --git a/light_ws2812_AVR/Examples/Chained_writes.c b/light_ws2812_AVR/Examples/Chained_writes.c new file mode 100644 index 0000000..3a2ca72 --- /dev/null +++ b/light_ws2812_AVR/Examples/Chained_writes.c @@ -0,0 +1,52 @@ +/* + * ATTENTION: This example uses the old v1.0 interface. + * + * Light_WS2812 library example - Chained Writes + * + * This example shows how to use multiple calls without issuing a reset + * in between, allowing to send the same buffer to the string + * multiple times. This technique can be useful to conserve memory + * or to calculate LED colors on-the-fly. + * + * Please make sure to set your configuration in "WS2812_config.h" first + * + */ + +#include +#include +#include +#include "light_ws2812.h" + +struct cRGB led[2]; + +int main(void) +{ + + uint8_t pos=0; + uint8_t direction=1; + uint8_t i; + + #ifdef __AVR_ATtiny10__ + CCP=0xD8; // configuration change protection, write signature + CLKPSR=0; // set cpu clock prescaler =1 (8Mhz) (attiny 4/5/9/10) + #endif + + led[0].r=16;led[0].g=00;led[0].b=00; // LED 0 is red + led[1].r=16;led[1].g=16;led[1].b=16; // LED 1 is White + + while(1) + { + + for (i=0; i +#include +#include +#include "light_ws2812.h" + +struct cRGBW led[1]; + +int main(void) +{ + #ifdef __AVR_ATtiny10__ + CCP=0xD8; // configuration change protection, write signature + CLKPSR=0; // set cpu clock prescaler =1 (8Mhz) (attiny 4/5/9/10) + #endif + + while(1) + { + led[0].r=128;led[0].g=00;led[0].b=0;led[0].w=0; // Write red to array + ws2812_setleds_rgbw(led,1); + _delay_ms(500); // wait for 500ms. + + led[0].r=0;led[0].g=128;led[0].b=0;led[0].w=0; // green + ws2812_setleds_rgbw(led,1); + _delay_ms(500); + + led[0].r=0;led[0].g=0;led[0].b=128;led[0].w=0; // blue + ws2812_setleds_rgbw(led,1); + _delay_ms(500); + + led[0].r=0;led[0].g=0;led[0].b=0;led[0].w=128; // white + ws2812_setleds_rgbw(led,1); + _delay_ms(500); + + } +} diff --git a/light_ws2812_AVR/Examples/RGB_blinky.c b/light_ws2812_AVR/Examples/RGB_blinky.c new file mode 100644 index 0000000..dfa92bb --- /dev/null +++ b/light_ws2812_AVR/Examples/RGB_blinky.c @@ -0,0 +1,38 @@ +/* +* Light_WS2812 library example - RGB_blinky +* +* cycles one LED through red, green, blue +* +* This example is configured for a ATtiny85 with PLL clock fuse set and +* the WS2812 string connected to PB4. +*/ + +#include +#include +#include +#include "light_ws2812.h" + +struct cRGB led[1]; + +int main(void) +{ + #ifdef __AVR_ATtiny10__ + CCP=0xD8; // configuration change protection, write signature + CLKPSR=0; // set cpu clock prescaler =1 (8Mhz) (attiny 4/5/9/10) + #endif + + while(1) + { + led[0].r=255;led[0].g=00;led[0].b=0; // Write red to array + ws2812_setleds(led,1); + _delay_ms(500); // wait for 500ms. + + led[0].r=0;led[0].g=255;led[0].b=0; // green + ws2812_setleds(led,1); + _delay_ms(500); + + led[0].r=0;led[0].g=00;led[0].b=255; // blue + ws2812_setleds(led,1); + _delay_ms(500); + } +} diff --git a/light_ws2812_AVR/Examples/Rainbow.c b/light_ws2812_AVR/Examples/Rainbow.c new file mode 100644 index 0000000..0f52578 --- /dev/null +++ b/light_ws2812_AVR/Examples/Rainbow.c @@ -0,0 +1,84 @@ +/* + * + * This example is configured for a Atmega32 at 16MHz + */ + +#include +#include +#include +#include "light_ws2812.h" + +#define MAXPIX 30 +#define COLORLENGTH (MAXPIX/2) +#define FADE (256/COLORLENGTH) + +struct cRGB colors[8]; +struct cRGB led[MAXPIX]; + +int main(void) +{ + + uint8_t j = 1; + uint8_t k = 1; + + DDRB|=_BV(ws2812_pin); + + uint8_t i; + for(i=MAXPIX; i>0; i--) + { + led[i-1].r=0;led[i-1].g=0;led[i-1].b=0; + } + + //Rainbowcolors + colors[0].r=150; colors[0].g=150; colors[0].b=150; + colors[1].r=255; colors[1].g=000; colors[1].b=000;//red + colors[2].r=255; colors[2].g=100; colors[2].b=000;//orange + colors[3].r=100; colors[3].g=255; colors[3].b=000;//yellow + colors[4].r=000; colors[4].g=255; colors[4].b=000;//green + colors[5].r=000; colors[5].g=100; colors[5].b=255;//light blue (türkis) + colors[6].r=000; colors[6].g=000; colors[6].b=255;//blue + colors[7].r=100; colors[7].g=000; colors[7].b=255;//violet + + while(1) + { + //shift all vallues by one led + uint8_t i=0; + for(i=MAXPIX; i>1; i--) + led[i-1]=led[i-2]; + //change colour when colourlength is reached + if(k>COLORLENGTH) + { + j++; + if(j>7) + { + j=0; + } + + k=0; + } + k++; + //loop colouers + + //fade red + if(led[0].r<(colors[j].r-FADE)) + led[0].r+=FADE; + + if(led[0].r>(colors[j].r+FADE)) + led[0].r-=FADE; + + if(led[0].g<(colors[j].g-FADE)) + led[0].g+=FADE; + + if(led[0].g>(colors[j].g+FADE)) + led[0].g-=FADE; + + if(led[0].b<(colors[j].b-FADE)) + led[0].b+=FADE; + + if(led[0].b>(colors[j].b+FADE)) + led[0].b-=FADE; + + _delay_ms(10); + ws2812_sendarray((uint8_t *)led,MAXPIX*3); + } +} diff --git a/light_ws2812_AVR/Light_WS2812/light_ws2812.c b/light_ws2812_AVR/Light_WS2812/light_ws2812.c new file mode 100644 index 0000000..d05bc3a --- /dev/null +++ b/light_ws2812_AVR/Light_WS2812/light_ws2812.c @@ -0,0 +1,218 @@ +/* +* light weight WS2812 lib V2.5b +* +* Controls WS2811/WS2812/WS2812B RGB-LEDs +* Author: Tim (cpldcpu@gmail.com) +* +* Jan 18th, 2014 v2.0b Initial Version +* Nov 29th, 2015 v2.3 Added SK6812RGBW support +* Nov 11th, 2023 v2.5 Added support for ports that cannot be addressed with "out" +* Added LGT8F88A support +* +* License: GNU GPL v2+ (see License.txt) +*/ + +#include "light_ws2812.h" +#include +#include +#include + +// Normally ws2812_sendarray_mask() runs under disabled-interrupt condition, +// undefine if you want to accept interrupts in that function. +#define interrupt_is_disabled + +// Setleds for standard RGB +void inline ws2812_setleds(struct cRGB *ledarray, uint16_t leds) +{ + ws2812_setleds_pin(ledarray,leds, _BV(ws2812_pin)); +} + +void inline ws2812_setleds_pin(struct cRGB *ledarray, uint16_t leds, uint8_t pinmask) +{ + ws2812_sendarray_mask((uint8_t*)ledarray,leds+leds+leds,pinmask); + _delay_us(ws2812_resettime); +} + +// Setleds for SK6812RGBW +void inline ws2812_setleds_rgbw(struct cRGBW *ledarray, uint16_t leds) +{ + ws2812_sendarray_mask((uint8_t*)ledarray,leds<<2,_BV(ws2812_pin)); + _delay_us(ws2812_resettime); +} + +void ws2812_sendarray(uint8_t *data,uint16_t datlen) +{ + ws2812_sendarray_mask(data,datlen,_BV(ws2812_pin)); +} + +/* + This routine writes an array of bytes with RGB values to the Dataout pin + using the fast 800kHz clockless WS2811/2812 protocol. +*/ + +// Timing in ns +#define w_zeropulse 350 +#define w_onepulse 900 +#define w_totalperiod 1250 + +// Fixed cycles used by the inner loop +#if defined(__LGT8F__) +#define w_fixedlow 4 +#define w_fixedhigh 6 +#define w_fixedtotal 10 +#else +#define w_fixedlow 3 +#define w_fixedhigh 6 +#define w_fixedtotal 10 +#endif + +// // Fixed cycles used by the inner loop +// #define w_fixedlow 2 +// #define w_fixedhigh 4 +// #define w_fixedtotal 8 + +// Insert NOPs to match the timing, if possible +#define w_zerocycles (((F_CPU/1000)*w_zeropulse )/1000000) +#define w_onecycles (((F_CPU/1000)*w_onepulse +500000)/1000000) +#define w_totalcycles (((F_CPU/1000)*w_totalperiod +500000)/1000000) + +// w1 - nops between rising edge and falling edge - low +#define w1 (w_zerocycles-w_fixedlow) +// w2 nops between fe low and fe high +#define w2 (w_onecycles-w_fixedhigh-w1) +// w3 nops to complete loop +#define w3 (w_totalcycles-w_fixedtotal-w1-w2) + +#if w1>0 + #define w1_nops w1 +#else + #define w1_nops 0 +#endif + +// The only critical timing parameter is the minimum pulse length of the "0" +// Warn or throw error if this timing can not be met with current F_CPU settings. +#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 + +#if w2>0 +#define w2_nops w2 +#else +#define w2_nops 0 +#endif + +#if w3>0 +#define w3_nops w3 +#else +#define w3_nops 0 +#endif + +#define w_nop1 "nop \n\t" +#ifdef interrupt_is_disabled +#define w_nop2 "brid .+0 \n\t" +#else +#define w_nop2 "brtc .+0 \n\t" +#endif +#define w_nop4 w_nop2 w_nop2 +#define w_nop8 w_nop4 w_nop4 +#define w_nop16 w_nop8 w_nop8 + +void inline ws2812_sendarray_mask(uint8_t *data,uint16_t datlen,uint8_t maskhi) +{ + uint8_t curbyte,ctr,masklo; + uint8_t sreg_prev; + uint8_t *port = (uint8_t*) _SFR_MEM_ADDR(ws2812_PORTREG); + + ws2812_DDRREG |= maskhi; // Enable output + + masklo =~maskhi&ws2812_PORTREG; + maskhi |= ws2812_PORTREG; + + sreg_prev=SREG; +#ifdef interrupt_is_disabled + cli(); +#endif + + while (datlen--) { + curbyte=*data++; + + asm volatile( + " ldi %0,8 \n\t" +#ifndef interrupt_is_disabled + " clt \n\t" +#endif + "loop%=: \n\t" + " st X,%3 \n\t" // '1' [02] '0' [02] - re + +#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 +#if defined(__LGT8F__) + " bst %1,7 \n\t" // '1' [02] '0' [02] + " brts 1f \n\t" // '1' [04] '0' [03] + " st X,%4 \n\t" // '1' [--] '0' [04] - fe-low + "1: lsl %1 \n\t" // '1' [05] '0' [05] +#else + " sbrs %1,7 \n\t" // '1' [04] '0' [03] + " st X,%4 \n\t" // '1' [--] '0' [05] - fe-low + " lsl %1 \n\t" // '1' [05] '0' [06] +#endif +#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 + " brcc skipone%= \n\t" // '1' [+1] '0' [+2] - + " st X,%4 \n\t" // '1' [+3] '0' [--] - fe-high + "skipone%=: " // '1' [+3] '0' [+2] - +#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" // '1' [+4] '0' [+3] + " brne loop%=\n\t" // '1' [+5] '0' [+4] + : "=&d" (ctr) + : "r" (curbyte), "x" (port), "r" (maskhi), "r" (masklo) + ); + } + + SREG=sreg_prev; +} diff --git a/light_ws2812_AVR/Light_WS2812/light_ws2812.h b/light_ws2812_AVR/Light_WS2812/light_ws2812.h new file mode 100644 index 0000000..91388c1 --- /dev/null +++ b/light_ws2812_AVR/Light_WS2812/light_ws2812.h @@ -0,0 +1,98 @@ +/* + * light weight WS2812 lib include + * + * Version 2.3 - Nev 29th 2015 + * Author: Tim (cpldcpu@gmail.com) + * + * Please do not change this file! All configuration is handled in "ws2812_config.h" + * + * License: GNU GPL v2+ (see License.txt) + + + */ + +#ifndef LIGHT_WS2812_H_ +#define LIGHT_WS2812_H_ + +#include "ws2812_config.h" +#include +#include + +/////////////////////////////////////////////////////////////////////// +// Define Reset time in µs. +// +// This is the time the library spends waiting after writing the data. +// +// WS2813 needs 300 µs reset time +// WS2812 and clones only need 50 µs +// +/////////////////////////////////////////////////////////////////////// +#if !defined(ws2812_resettime) +#define ws2812_resettime 300 +#endif + +/////////////////////////////////////////////////////////////////////// +// Define I/O pin +/////////////////////////////////////////////////////////////////////// +#if !defined(ws2812_port) +#define ws2812_port B // Data port +#endif + +#if !defined(ws2812_pin) +#define ws2812_pin 0 // Data out pin +#endif + +/* + * Structure of the LED array + * + * cRGB: RGB for WS2812S/B/C/D, SK6812, SK6812Mini, SK6812WWA, APA104, APA106 + * cRGBW: RGBW for SK6812RGBW + */ + +struct cRGB { uint8_t g; uint8_t r; uint8_t b; }; +struct cRGBW { uint8_t g; uint8_t r; uint8_t b; uint8_t w;}; + + + +/* User Interface + * + * Input: + * ledarray: An array of GRB data describing the LED colors + * number_of_leds: The number of LEDs to write + * pinmask (optional): Bitmask describing the output bin. e.g. _BV(PB0) + * + * The functions will perform the following actions: + * - Set the data-out pin as output + * - Send out the LED data + * - Wait 50µs to reset the LEDs + */ + +void ws2812_setleds (struct cRGB *ledarray, uint16_t number_of_leds); +void ws2812_setleds_pin (struct cRGB *ledarray, uint16_t number_of_leds,uint8_t pinmask); +void ws2812_setleds_rgbw(struct cRGBW *ledarray, uint16_t number_of_leds); + +/* + * Old interface / Internal functions + * + * The functions take a byte-array and send to the data output as WS2812 bitstream. + * The length is the number of bytes to send - three per LED. + */ + +void ws2812_sendarray (uint8_t *array,uint16_t length); +void ws2812_sendarray_mask(uint8_t *array,uint16_t length, uint8_t pinmask); + + +/* + * Internal defines + */ +#if !defined(CONCAT) +#define CONCAT(a, b) a ## b +#endif + +#if !defined(CONCAT_EXP) +#define CONCAT_EXP(a, b) CONCAT(a, b) +#endif + +#define ws2812_PORTREG CONCAT_EXP(PORT,ws2812_port) +#define ws2812_DDRREG CONCAT_EXP(DDR,ws2812_port) + +#endif /* LIGHT_WS2812_H_ */ diff --git a/light_ws2812_AVR/Light_WS2812/light_ws2812.o b/light_ws2812_AVR/Light_WS2812/light_ws2812.o new file mode 100644 index 0000000..bb060e7 Binary files /dev/null and b/light_ws2812_AVR/Light_WS2812/light_ws2812.o differ diff --git a/light_ws2812_AVR/Light_WS2812/ws2812_config.h b/light_ws2812_AVR/Light_WS2812/ws2812_config.h new file mode 100644 index 0000000..0622e37 --- /dev/null +++ b/light_ws2812_AVR/Light_WS2812/ws2812_config.h @@ -0,0 +1,34 @@ +/* + * light_ws2812_config.h + * + * v2.4 - Nov 27, 2016 + * + * User Configuration file for the light_ws2812_lib + * + */ + + +#ifndef WS2812_CONFIG_H_ +#define WS2812_CONFIG_H_ + +/////////////////////////////////////////////////////////////////////// +// Define Reset time in µs. +// +// This is the time the library spends waiting after writing the data. +// +// WS2813 needs 300 µs reset time +// WS2812 and clones only need 50 µs +// +/////////////////////////////////////////////////////////////////////// + +#define ws2812_resettime 300 + +/////////////////////////////////////////////////////////////////////// +// Define I/O pin +/////////////////////////////////////////////////////////////////////// + + +#define ws2812_port B // Data port +#define ws2812_pin 4 // Data out pin + +#endif /* WS2812_CONFIG_H_ */ diff --git a/light_ws2812_AVR/Makefile b/light_ws2812_AVR/Makefile new file mode 100644 index 0000000..9444b0b --- /dev/null +++ b/light_ws2812_AVR/Makefile @@ -0,0 +1,40 @@ +# Makefile to build light_ws2812 library examples +# This is not a very good example of a makefile - the dependencies do not work, therefore everything is rebuilt every time. + +# Change these parameters for your device + +F_CPU = 16000000 +# DEVICE = attiny85 +DEVICE = atmega168p +# +# Tools: +CC = avr-gcc + +LIB = light_ws2812 +EXAMPLES = RGB_blinky RGBW_blinky Chained_writes Rainbow +DEP = ws2812_config.h Light_WS2812/light_ws2812.h + +CFLAGS = -g2 -I. -ILight_WS2812 -mmcu=$(DEVICE) -DF_CPU=$(F_CPU) +CFLAGS+= -Os -ffunction-sections -fdata-sections -fpack-struct -fno-move-loop-invariants -fno-tree-scev-cprop -fno-inline-small-functions +CFLAGS+= -Wall -Wno-pointer-to-int-cast +#CFLAGS+= -Wa,-ahls=$<.lst + +LDFLAGS = -Wl,--relax,--section-start=.text=0,-Map=main.map + +all: $(EXAMPLES) + +$(LIB): $(DEP) + @echo Building Library + @$(CC) $(CFLAGS) -o Objects/$@.o -c Light_WS2812/$@.c + +$(EXAMPLES): $(LIB) + @echo Building $@ + @$(CC) $(CFLAGS) -o Objects/$@.o Examples/$@.c Light_WS2812/$^.c + @avr-size Objects/$@.o + @avr-objcopy -j .text -j .data -O ihex Objects/$@.o $@.hex + @avr-objdump -d -S Objects/$@.o >Objects/$@.lss + +.PHONY: clean + +clean: + rm -f *.hex Objects/*.o Objects/*.lss diff --git a/light_ws2812_AVR/Objects/obj files go here.txt b/light_ws2812_AVR/Objects/obj files go here.txt new file mode 100644 index 0000000..7b4d68d --- /dev/null +++ b/light_ws2812_AVR/Objects/obj files go here.txt @@ -0,0 +1 @@ +empty \ No newline at end of file diff --git a/main.c b/main.c new file mode 100644 index 0000000..4d9b340 --- /dev/null +++ b/main.c @@ -0,0 +1,42 @@ +#define F_CPU 1000000UL + +#include +#include +#include"fix_fft.h" +#include"avr_adc.h" +#include"light_ws2812_AVR/Light_WS2812/ws2812_config.h" +#include"light_ws2812_AVR/Light_WS2812/light_ws2812.h" + + +#define STARTADC ADCSRA |= _BS(ADSC) +#define PB_mic PB0 + +int main (void) +{ + int i; + char sample[128]; + char im[128]; + struct cRGB led_bar1[1]; + //DDRB = (1< +# to submit bug reports. +#AVRDUDE_VERBOSE = -v -v + +AVRDUDE_BASIC = -p $(MCU) -c $(AVRDUDE_PROGRAMMER) -B4 +AVRDUDE_FLAGS = $(AVRDUDE_BASIC) $(AVRDUDE_NO_VERIFY) $(AVRDUDE_VERBOSE) $(AVRDUDE_ERASE_COUNTER) + + +CC = avr-gcc +OBJCOPY = avr-objcopy +OBJDUMP = avr-objdump +SIZE = avr-size +NM = avr-nm +AVRDUDE = avrdude +REMOVE = rm -f +MV = mv -f + +# Define all object files. +OBJ = $(SRC:.c=.o) $(ASRC:.S=.o) + +# Define all listing files. +LST = $(ASRC:.S=.lst) $(SRC:.c=.lst) + +# Combine all necessary flags and optional flags. +# Add target processor to flags. +ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) +ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS) + + +# Default target. +all: build + +build: elf hex eep + +elf: $(TARGET).elf +hex: $(TARGET).hex +eep: $(TARGET).eep +lss: $(TARGET).lss +sym: $(TARGET).sym + + +# Program the device. +program: $(TARGET).hex $(TARGET).eep + $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM) + + + + +# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB. +COFFCONVERT=$(OBJCOPY) --debugging \ +--change-section-address .data-0x800000 \ +--change-section-address .bss-0x800000 \ +--change-section-address .noinit-0x800000 \ +--change-section-address .eeprom-0x810000 + + +coff: $(TARGET).elf + $(COFFCONVERT) -O coff-avr $(TARGET).elf $(TARGET).cof + + +extcoff: $(TARGET).elf + $(COFFCONVERT) -O coff-ext-avr $(TARGET).elf $(TARGET).cof + + +.SUFFIXES: .elf .hex .eep .lss .sym + +.elf.hex: + $(OBJCOPY) -O $(FORMAT) -R .eeprom $< $@ + +.elf.eep: + -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \ + --change-section-lma .eeprom=0 -O $(FORMAT) $< $@ + +# Create extended listing file from ELF output file. +.elf.lss: + $(OBJDUMP) -h -S $< > $@ + +# Create a symbol table from ELF output file. +.elf.sym: + $(NM) -n $< > $@ + + + +# Link: create ELF output file from object files. +$(TARGET).elf: $(OBJ) + $(CC) $(ALL_CFLAGS) $(OBJ) --output $@ $(LDFLAGS) + + +# Compile: create object files from C source files. +.c.o: + $(CC) -c $(ALL_CFLAGS) $< -o $@ + + +# Compile: create assembler files from C source files. +.c.s: + $(CC) -S $(ALL_CFLAGS) $< -o $@ + + +# Assemble: create object files from assembler source files. +.S.o: + $(CC) -c $(ALL_ASFLAGS) $< -o $@ + + + +# Target: clean project. +clean: + $(REMOVE) $(TARGET).hex $(TARGET).eep $(TARGET).cof $(TARGET).elf \ + $(TARGET).map $(TARGET).sym $(TARGET).lss \ + $(OBJ) $(LST) $(SRC:.c=.s) $(SRC:.c=.d) + +depend: + if grep '^# DO NOT DELETE' $(MAKEFILE) >/dev/null; \ + then \ + sed -e '/^# DO NOT DELETE/,$$d' $(MAKEFILE) > \ + $(MAKEFILE).$$$$ && \ + $(MV) $(MAKEFILE).$$$$ $(MAKEFILE); \ + fi + echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' \ + >> $(MAKEFILE); \ + $(CC) -M -mmcu=$(MCU) $(CDEFS) $(CINCS) $(SRC) $(ASRC) >> $(MAKEFILE) + +.PHONY: all build elf hex eep lss sym program coff extcoff clean depend diff --git a/micronucleus b/micronucleus new file mode 100755 index 0000000..d410cb4 Binary files /dev/null and b/micronucleus differ