File tree Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Expand file tree Collapse file tree 3 files changed +26
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ bash scripts/start.sh
26
26
27
27
28
28
## Code flow
29
- * scipts/start.sh <- enetry point
29
+ * scipts/start.sh <- entry point
30
30
* calls main.py
31
31
* main.py <- start of the code
32
32
* cpy_git <- handles all things to do with git
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ If you add a board to the repo please add it here too. <3 thanks
6
6
## Nice!Nano v1/v2
7
7
Name
8
8
* nice_nano_bs
9
+
9
10
frozen libs
10
11
* ble
11
12
* neopixel
You can’t perform that action at this time.
0 commit comments