diff --git a/ws2812/Makefile b/ws2812/Makefile deleted file mode 100644 index f691b83..0000000 --- a/ws2812/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -MCU=attiny85 -CHIP_SELECT=AVR_ATtiny85 -F_CPU=8000000 -CFLAGS=-O -finline-functions -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -Wall -Wstrict-prototypes -DF_CPU=${F_CPU} -std=gnu99 -D__${CHIP_SELECT}__=1 -mmcu=${MCU} - -main: - ${GCC}/bin/avr-gcc ${CFLAGS} -I../base/include/ -E -o main.E src/main.c - ${GCC}/bin/avr-gcc ${CFLAGS} -I../base/include/ -S -o main.S src/main.c - ${GCC}/bin/avr-gcc ${CFLAGS} -I${SIMAVR}/include/ -I../base/include/ -o main.elf src/main.c - ${OBJCOPY} -O ihex main.elf main.hex - diff --git a/ws2812/src/direct_write_assembly.c b/ws2812/direct_write_assembly.c similarity index 100% rename from ws2812/src/direct_write_assembly.c rename to ws2812/direct_write_assembly.c diff --git a/ws2812/src/main.c b/ws2812/main.c similarity index 100% rename from ws2812/src/main.c rename to ws2812/main.c diff --git a/ws2812/src/np_common.c b/ws2812/np_common.c similarity index 100% rename from ws2812/src/np_common.c rename to ws2812/np_common.c diff --git a/ws2812/src/np_rgb.c b/ws2812/np_rgb.c similarity index 100% rename from ws2812/src/np_rgb.c rename to ws2812/np_rgb.c diff --git a/ws2812/src/ws2812.h b/ws2812/ws2812.h similarity index 100% rename from ws2812/src/ws2812.h rename to ws2812/ws2812.h