Skip to content

Commit 1166b8e

Browse files
committed
Merge branch 'main' into kmk-freez
2 parents da31721 + 3c426a7 commit 1166b8e

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

Makefile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
##
2+
# bs-python
3+
#
4+
# @version 0.4
5+
6+
CPYPREFIX := cpy/circuitpython
7+
8+
.PHONY: default
9+
default: run
10+
11+
.PHONY: all
12+
all: init build
13+
14+
.PHONY: clean
15+
clean:
16+
rm -rf ${CPYPREFIX}
17+
18+
.PHONY: run
19+
run:
20+
python3 main.py
21+
docker pull boardsource/bs-python
22+
docker run -v $(pwd)/build_out:/build_out -v $(pwd)/cpy/circuitpython:/cpy/circuitpython boardsource/bs-python && bash post_build.sh
23+
24+
# end

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bash scripts/start.sh
2626

2727

2828
## Code flow
29-
* scipts/start.sh <- enetry point
29+
* scipts/start.sh <- entry point
3030
* calls main.py
3131
* main.py <- start of the code
3232
* cpy_git <- handles all things to do with git

supported_boards.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ If you add a board to the repo please add it here too. <3 thanks
66
## Nice!Nano v1/v2
77
Name
88
* nice_nano_bs
9+
910
frozen libs
1011
* ble
1112
* neopixel

0 commit comments

Comments
 (0)