From 5c28706133f61aa4e3d1c5f4a256684e6efa86d5 Mon Sep 17 00:00:00 2001 From: Savanni D'Gerinel Date: Tue, 20 Jun 2023 23:32:54 -0400 Subject: [PATCH] Move files around --- ws2812/Makefile | 11 ----------- ws2812/{src => }/direct_write_assembly.c | 0 ws2812/{src => }/main.c | 0 ws2812/{src => }/np_common.c | 0 ws2812/{src => }/np_rgb.c | 0 ws2812/{src => }/ws2812.h | 0 6 files changed, 11 deletions(-) delete mode 100644 ws2812/Makefile rename ws2812/{src => }/direct_write_assembly.c (100%) rename ws2812/{src => }/main.c (100%) rename ws2812/{src => }/np_common.c (100%) rename ws2812/{src => }/np_rgb.c (100%) rename ws2812/{src => }/ws2812.h (100%) 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