We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d53389 commit cd31c29Copy full SHA for cd31c29
.gitignore
@@ -59,6 +59,7 @@ Module.symvers
59
Mkfile.old
60
dkms.conf
61
out/
62
+build/
63
### C++ ###
64
# Prerequisites
65
Makefile
deploy.sh
@@ -1,17 +1,14 @@
1
#!/bin/bash
2
3
-sudo modprobe vcan
4
-./embedded/utils/setupCAN.sh
5
-make examples VIRTUAL=1
+mkdir build && cd build
+cmake ..
6
retVal=$?
7
if [ $retVal -ne 0 ]; then
8
exit 1
9
fi
10
-make VIRTUAL=1
+make
11
12
13
14
15
-python3 ./embedded/examples/sims/rms.py &
16
-./out/tests/can_test
17
exit 0
0 commit comments