Skip to content

Commit ba403a2

Browse files
committedMar 7, 2019
add EV3RT based on HRP3 kernel (svn r673, no_tecs)
1 parent 5dc3298 commit ba403a2

File tree

1,173 files changed

+319155
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,173 files changed

+319155
-0
lines changed
 

‎.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Object files
2+
*.o
3+
*.ko
4+
*.obj
5+
*.elf
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Libraries
12+
*.lib
13+
*.a
14+
*.la
15+
*.lo
16+
17+
# Shared objects (inc. Windows DLLs)
18+
*.dll
19+
*.so
20+
*.so.*
21+
*.dylib
22+
23+
# Executables
24+
*.exe
25+
*.out
26+
*.i*86
27+
*.x86_64
28+
*.hex
29+
30+
# System image
31+
uImage
32+
33+
# Build directories
34+
OBJ/
35+
36+
# Debug files
37+
*.dSYM/
38+
39+
# Exceptions
40+
!libusblib.a

‎.gitmodules

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[submodule "modules/mbed-on-toppers"]
2+
path = modules/mbed-on-toppers
3+
url = https://github.com/ev3rt-git/mbed-on-toppers.git
4+
[submodule "modules/usblib"]
5+
path = modules/usblib
6+
url = https://github.com/ev3rt-git/usblib.git
7+
[submodule "modules/btstack"]
8+
path = modules/btstack
9+
url = https://github.com/ev3rt-git/btstack.git
10+
[submodule "sdk"]
11+
path = sdk
12+
url = https://github.com/ev3rt-git/ev3rt-hrp3-sdk.git

0 commit comments

Comments
 (0)
Please sign in to comment.