File tree Expand file tree Collapse file tree 3 files changed +45
-18
lines changed
Expand file tree Collapse file tree 3 files changed +45
-18
lines changed Original file line number Diff line number Diff line change 33# SHELL := /bin/bash
44# PATH := /usr/local/bin:$(PATH)
55
6- all :
7- pio -f -c vim run
8-
9- upload :
10- pio -f -c vim run --target upload
11-
12- clean :
13- pio -f -c vim run --target clean
14-
15- program :
16- pio -f -c vim run --target program
17-
18- uploadfs :
19- pio -f -c vim run --target uploadfs
20-
216initlsp :
227 pio -f -c vim run -t compiledb
23-
24- update :
25- pio -f -c vim update
Original file line number Diff line number Diff line change 1+ # Programme coeur embarqué
2+
3+ ## Compiler le programme
4+
5+ ``` sh
6+ just build
7+ ```
8+
9+ ## Téléverser
10+
11+ La carte doit être branchée à l'ordinateur.
12+
13+ ``` sh
14+ just upload
15+ ```
16+
17+ ## Suppression des fichiers compilés
18+
19+ ``` sh
20+ just clean
21+ ```
22+
23+ ## Inspection du code en temps réel
24+
25+ ``` sh
26+ just check
27+ ```
28+
29+ ## Initialisation du workspace pour clang dans neovim
30+
31+ ``` sh
32+ make initlsp
33+ ```
34+
Original file line number Diff line number Diff line change 1+ build :
2+ pio run
3+
4+ upload :
5+ pio run --target upload
6+
7+ clean :
8+ pio run --target clean
9+
10+ check :
11+ pio check
You can’t perform that action at this time.
0 commit comments