Skip to content

Add configs for MMDVM_HS_Dual_Hat in USB mode #154

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
#
# .gitattributes
#

## GENERIC ##

* text=auto


## SOURCE CODE ##

*.c eol=lf diff=cpp
*.h eol=lf diff=cpp
*.cpp eol=lf diff=cpp
*.hpp eol=lf diff=cpp
*.cxx eol=lf diff=cpp
*.hxx eol=lf diff=cpp
*.cc eol=lf diff=cpp
*.hh eol=lf diff=cpp
*.c++ eol=lf diff=cpp
*.h++ eol=lf diff=cpp
*.ino eol=lf diff=cpp
*.pde eol=lf diff=cpp


## SCRIPTS ##

*.sh eol=lf
*.bat eol=crlf
*.cmd eol=crlf
*.ps1 eol=crlf
*.py eol=lf diff=python
*.ld eol=lf
Makefile eol=lf
*.mk eol=lf
*.make eol=lf
*.makefile eol=lf


## TEXT & MARKUP ##

*.txt eol=crlf
*.log eol=crlf
*.md eol=crlf diff=markdown
*.mkdn eol=crlf diff=markdown
*.markdown eol=crlf diff=markdown
*.rst eol=crlf
*.adoc eol=crlf
README eol=lf
LICENSE eol=lf
INSTALL eol=lf
COPYING eol=lf
HOWTO eol=lf
BUILD eol=lf
HACKING eol=lf
CHANGES eol=lf
CHANGELOG eol=lf
26 changes: 24 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
#
# .gitignore
#

*.o
## BACKUP & TEMPORARY FILES ##

bin/
*~
*.bak
*.tmp
*.swp


## BUILD ARTIFACTS ##

*.o
*.elf
*.hex
*.bin
*.map
*.lst
bin/
obj_f1/
obj_f4/
obj_f7/
GitVersion\.h


## IDEs ##

.vscode/
Loading