Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
qitas committed May 19, 2021
1 parent a8e3736 commit ed982d2
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ jobs:
- uses: actions/upload-artifact@v2
if: success()
with:
name: N76E003_project
path: project/examples
name: N76E003
path: project/build

Empty file added project/build/.gitignore
Empty file.
1 change: 1 addition & 0 deletions project/examples/aht10/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ NAME=aht10
ISP_OPTS += -s

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/blink/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
NAME=blink

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/bmp280-i2c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ NAME=bmp280-i2c
ISP_OPTS += -s

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk

Expand Down
1 change: 1 addition & 0 deletions project/examples/bmp280-spi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ NAME=bmp280-spi
ISP_OPTS += -s

all: $(NAME).bin
cp $(NAME).bin ../../build

#$(NAME).c: $(NAME).h

Expand Down
1 change: 1 addition & 0 deletions project/examples/iap/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ NAME=iap
ISP_OPTS += -s

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/max7219-matrix/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
NAME=matrix

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/stepmotor/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
NAME=stepmotor

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/uart/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ NAME=uart
ISP_OPTS += -s

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/wii-nunchuk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ NAME=wii-nunchuk
ISP_OPTS += -s

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk
1 change: 1 addition & 0 deletions project/examples/ws2812/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
NAME=ws2812

all: $(NAME).bin
cp $(NAME).bin ../../build

include ../../Rules.mk

Expand Down

0 comments on commit ed982d2

Please sign in to comment.