Skip to content

Commit 6e9ffdb

Browse files
author
ShawnHymel
committed
Created schematic
1 parent 75dff10 commit 6e9ffdb

File tree

4 files changed

+7681
-0
lines changed

4 files changed

+7681
-0
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Custom for Visual Studio
5+
*.cs diff=csharp
6+
*.sln merge=union
7+
*.csproj merge=union
8+
*.vbproj merge=union
9+
*.fsproj merge=union
10+
*.dbproj merge=union
11+
12+
# Standard to msysgit
13+
*.doc diff=astextplain
14+
*.DOC diff=astextplain
15+
*.docx diff=astextplain
16+
*.DOCX diff=astextplain
17+
*.dot diff=astextplain
18+
*.DOT diff=astextplain
19+
*.pdf diff=astextplain
20+
*.PDF diff=astextplain
21+
*.rtf diff=astextplain
22+
*.RTF diff=astextplain

.gitignore

Lines changed: 171 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#############
33+
## Eagle
34+
#############
35+
36+
# Ignore the board and schematic backup files
37+
*.b#?
38+
*.s#?
39+
40+
41+
#################
42+
## Visual Studio
43+
#################
44+
45+
## Ignore Visual Studio temporary files, build results, and
46+
## files generated by popular Visual Studio add-ons.
47+
48+
# User-specific files
49+
*.suo
50+
*.user
51+
*.sln.docstates
52+
53+
# Build results
54+
[Dd]ebug/
55+
[Rr]elease/
56+
*_i.c
57+
*_p.c
58+
*.ilk
59+
*.meta
60+
*.obj
61+
*.pch
62+
*.pdb
63+
*.pgc
64+
*.pgd
65+
*.rsp
66+
*.sbr
67+
*.tlb
68+
*.tli
69+
*.tlh
70+
*.tmp
71+
*.vspscc
72+
.builds
73+
*.dotCover
74+
75+
## TODO: If you have NuGet Package Restore enabled, uncomment this
76+
#packages/
77+
78+
# Visual C++ cache files
79+
ipch/
80+
*.aps
81+
*.ncb
82+
*.opensdf
83+
*.sdf
84+
85+
# Visual Studio profiler
86+
*.psess
87+
*.vsp
88+
89+
# ReSharper is a .NET coding add-in
90+
_ReSharper*
91+
92+
# Installshield output folder
93+
[Ee]xpress
94+
95+
# DocProject is a documentation generator add-in
96+
DocProject/buildhelp/
97+
DocProject/Help/*.HxT
98+
DocProject/Help/*.HxC
99+
DocProject/Help/*.hhc
100+
DocProject/Help/*.hhk
101+
DocProject/Help/*.hhp
102+
DocProject/Help/Html2
103+
DocProject/Help/html
104+
105+
# Click-Once directory
106+
publish
107+
108+
# Others
109+
[Bb]in
110+
[Oo]bj
111+
sql
112+
TestResults
113+
*.Cache
114+
ClientBin
115+
stylecop.*
116+
~$*
117+
*.dbmdl
118+
Generated_Code #added for RIA/Silverlight projects
119+
120+
# Backup & report files from converting an old project file to a newer
121+
# Visual Studio version. Backup files are not needed, because we have git ;-)
122+
_UpgradeReport_Files/
123+
Backup*/
124+
UpgradeLog*.XML
125+
126+
127+
############
128+
## Windows
129+
############
130+
131+
# Windows image file caches
132+
Thumbs.db
133+
134+
# Folder config file
135+
Desktop.ini
136+
137+
138+
#############
139+
## Python
140+
#############
141+
142+
*.py[co]
143+
144+
# Packages
145+
*.egg
146+
*.egg-info
147+
dist
148+
build
149+
eggs
150+
parts
151+
bin
152+
var
153+
sdist
154+
develop-eggs
155+
.installed.cfg
156+
157+
# Installer logs
158+
pip-log.txt
159+
160+
# Unit test / coverage reports
161+
.coverage
162+
.tox
163+
164+
#Translations
165+
*.mo
166+
167+
#Mr Developer
168+
.mr.developer.cfg
169+
170+
# Mac crap
171+
.DS_Store

0 commit comments

Comments
 (0)