Skip to content

Commit aca386a

Browse files
author
Ted Morse
committed
First release of Astrobee Robot Software v1.
0 parents  commit aca386a

File tree

2,100 files changed

+719599
-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.

2,100 files changed

+719599
-0
lines changed

.gitignore

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
##----------------------------------------------------------------
2+
## Free Flyer .gitignore. Determines file types for GIT to ignore
3+
##---------------------------------------------------------------
4+
5+
.astrobee_repo
6+
*.bag
7+
8+
# Documents currently open in windows
9+
*.autosave
10+
*.asv
11+
*~
12+
13+
# Simulink Project Folder
14+
*.mexw64
15+
*.mexa64
16+
*.mexmaci64
17+
*.dmr
18+
slprj/
19+
20+
# Operating System Auto-generated Files
21+
*.DS_Store
22+
23+
# Compiled Object files
24+
*.slo
25+
*.lo
26+
*.o
27+
*.obj
28+
29+
# Precompiled Headers
30+
*.gch
31+
*.pch
32+
33+
# Compiled Dynamic libraries
34+
*.so
35+
*.dylib
36+
*.dll
37+
38+
# Fortran module files
39+
*.mod
40+
41+
# Compiled Static libraries
42+
*.lai
43+
*.la
44+
*.a
45+
*.lib
46+
47+
# Executables
48+
*.exe
49+
*.out
50+
*.app
51+
52+
# Emacs temporary
53+
54+
# ViM swap files
55+
*.swp
56+
*.swo
57+
58+
# Precompile python
59+
*.pyc
60+
61+
Vagrantfile.local
62+
63+
# Folders that probably shouldn't be checked in
64+
install
65+
.vagrant
66+
67+
build
68+
arm_build
69+
arm_build_release
70+
arm_build_debug
71+
armhf
72+
build_native
73+
data
74+
doc/html
75+
doc/latex
76+
77+
# dds config files, they are maintained in the astrobee common submodule
78+
astrobee/config/dds
79+
80+
#zones bin
81+
astrobee/zones/*.bin
82+
astrobee/freeflyer/*.bin
83+
/freeflyer.sublime-project
84+
/freeflyer.sublime-workspace
85+
/simulation/iss-description
86+
/simulation/granite-description
87+
88+
# catkin
89+
/.catkin_tools
90+
/*-build
91+
/*-devel
92+
/*-install
93+
/*-rootfs
94+
/*-kernel
95+
/*-logs
96+
/qped.sublime-workspace
97+
*.egg
98+
*.egg-info
99+
100+
# Tags & config
101+
tags
102+
.ctags

.gitmodules

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[submodule "submodules/common"]
2+
path = submodules/common
3+
url = https://babelfish.arc.nasa.gov/git/astrobee_common
4+
[submodule "submodules/android"]
5+
path = submodules/android
6+
url = https://babelfish.arc.nasa.gov/git/freeflyer_android
7+
[submodule "submodules/avionics"]
8+
path = submodules/avionics
9+
url = https://babelfish.arc.nasa.gov/git/freeflyer_avionics
10+
[submodule "submodules/platform"]
11+
path = submodules/platform
12+
url = https://babelfish.arc.nasa.gov/git/freeflyer_platform

0 commit comments

Comments
 (0)