Skip to content

Commit 525c209

Browse files
committed
Removed lib folder with .mpy files and added .gitignore
1 parent c4de7c9 commit 525c209

13 files changed

+69
-0
lines changed

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Compiled Sources
2+
###################
3+
*.o
4+
*.a
5+
!atmel-samd/asf/**/*.a
6+
*.elf
7+
*.bin
8+
*.map
9+
*.hex
10+
*.dis
11+
*.exe
12+
*.mpy
13+
14+
# Packages
15+
############
16+
17+
# Logs and Databases
18+
######################
19+
*.log
20+
21+
# VIM Swap Files
22+
######################
23+
*.swp
24+
25+
# Build directory
26+
######################
27+
build/
28+
bin/
29+
30+
# Test failure outputs
31+
######################
32+
tests/*.exp
33+
tests/*.out
34+
35+
# Python cache files
36+
######################
37+
__pycache__/
38+
*.pyc
39+
40+
# Customized Makefile/project overrides
41+
######################
42+
GNUmakefile
43+
user.props
44+
45+
# Sphinx output
46+
###############
47+
_build
48+
49+
# Generated rst files
50+
######################
51+
genrst/
52+
53+
# ctags and similar
54+
###################
55+
TAGS
56+
57+
# Merge leftovers
58+
#################
59+
*.orig
60+
61+
# Emacs backup files
62+
####################
63+
*~
64+
65+
*.DS_Store
66+
67+
# POEdit mo files
68+
####################
69+
*.mo

lib/adafruit_bus_device/__init__.py

Whitespace-only changes.
-1.67 KB
Binary file not shown.
-1.22 KB
Binary file not shown.

lib/adafruit_sdcard.mpy

-5.22 KB
Binary file not shown.

lib/gpio_test.mpy

-1.99 KB
Binary file not shown.

lib/i2c_test.mpy

-2.36 KB
Binary file not shown.

lib/led_test.mpy

-1.72 KB
Binary file not shown.

lib/sd_cd_test.mpy

-1.31 KB
Binary file not shown.

lib/sd_test.mpy

-2.2 KB
Binary file not shown.

lib/spi_test.mpy

-3.16 KB
Binary file not shown.

lib/uart_test.mpy

-1.41 KB
Binary file not shown.

lib/voltage_monitor_test.mpy

-1.39 KB
Binary file not shown.

0 commit comments

Comments
 (0)