Skip to content

Commit fc975d6

Browse files
authored
Merge branch 'adafruit:main' into add_uart_subclassing
2 parents 23c292a + 9fdecac commit fc975d6

File tree

3,484 files changed

+176170
-79636
lines changed

Some content is hidden

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

3,484 files changed

+176170
-79636
lines changed

.git-blame-ignore-revs

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# tools/gen-cpydiff.py: Fix formatting of doc strings for new Black.
2+
0f78c36c5aa458a954eed39a46942209107a553e
3+
4+
# tests/run-tests.py: Reformat with Black.
5+
2a38d7103672580882fb621a5b76e8d26805d593
6+
7+
# all: Update Python code to conform to latest black formatting.
8+
06659077a81b85882254cf0953c33b27614e018e
9+
10+
# tools/uncrustify: Enable more opts to remove space between func and '('.
11+
77ed6f69ac35c1663a5633a8ee1d8a2446542204
12+
13+
# tools/codeformat.py: Include extmod/{btstack,nimble} in code formatting.
14+
026fda605e03113d6e753290d65fed774418bc53
15+
16+
# all: Format code to add space after C++-style comment start.
17+
84fa3312cfa7d2237d4b56952f2cd6e3591210c4
18+
19+
# tests: Format all Python code with black, except tests in basics subdir.
20+
3dc324d3f1312e40d3a8ed87e7244966bb756f26
21+
22+
# all: Remove spaces inside and around parenthesis.
23+
1a3e386c67e03a79eb768cb6e9f6777e002d6660
24+
25+
# all: Remove spaces between nested paren and inside function arg paren.
26+
feb25775851ba0c04b8d1013716f442258879d9c
27+
28+
# all: Reformat C and Python source code with tools/codeformat.py.
29+
69661f3343bedf86e514337cff63d96cc42f8859
30+
31+
# stm32/usbdev: Convert files to unix line endings.
32+
abde0fa2267f9062b28c3c015d7662a550125cc6
33+
34+
# all: Remove trailing spaces, per coding conventions.
35+
761e4c7ff62896c7d8f8c3dfc3cc98a4cc4f2f6f

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@
1111
*.bat text eol=crlf
1212

1313
# These are binary so should never be modified by git.
14+
*.a binary
1415
*.png binary
1516
*.jpg binary
1617
*.dxf binary
1718
*.mpy binary
1819
*.deb binary
1920
*.zip binary
2021
*.pdf binary
22+
*.wav binary
2123

2224
# These should also not be modified by git.
2325
tests/basics/string_cr_conversion.py -text

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: 🐞 Bug Report
2+
description: Create a bug report to help us improve
3+
labels:
4+
- bug
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: >-
9+
Thanks! for testing out CircuitPython. Now that you have encountered a
10+
bug... you can file a report for it.
11+
- type: textarea
12+
id: firmware
13+
attributes:
14+
label: CircuitPython version
15+
description: >-
16+
Include the version of CircuitPython you're running. You can see it in
17+
the `boot_out.txt` file, as well as in the `REPL`.
18+
placeholder: Adafruit CircuitPython 6.2.0 on 2021-03-01; Raspberry Pi Pico with rp2040
19+
render: python
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: code
24+
attributes:
25+
label: Code/REPL
26+
description: This is automatically rendered as Python, so no need for backticks.
27+
placeholder: |
28+
import busio, bitbangio
29+
i2c = bitbangio.I2C(board.GP1, board.GP0)
30+
render: python
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: behavior
35+
attributes:
36+
label: Behavior
37+
description: What happens when you run the code above? Include error messages (if any).
38+
placeholder: |
39+
```python
40+
Traceback (most recent call last):
41+
File "<stdin>", line 1, in <module>
42+
TimeoutError: Clock stretch too long
43+
```
44+
On-board led pulses red.
45+
validations:
46+
required: true
47+
- type: textarea
48+
id: description
49+
attributes:
50+
label: Description
51+
description: Optionally, describe the bug in more detail.
52+
placeholder: |
53+
- Error while using i2c...
54+
- Only happens when...
55+
- might be related to #4291...
56+
- type: textarea
57+
id: more-info
58+
attributes:
59+
label: Additional information
60+
description: >-
61+
Optionally, add any other information like hardware connection, scope
62+
output etc. If you have already done some debugging, mention it here.
63+
placeholder: Removing [this](url) line resolves the issue.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
contact_links:
2+
- name: 🔗 Adafruit Forum
3+
url: https://forums.adafruit.com/
4+
about: Official Adafruit technical support forum. Good for getting help on getting a project working.
5+
- name: 🔗 Adafruit Discord
6+
url: https://adafru.it/discord
7+
about: Unofficial chat with many helpful folks and normally prompt replies.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: 🚀 Feature Request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: 'enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
<!-- We keep adding new features and enhancements to CircuitPython 🚀
11+
and would love ❤ to see what new challenge you have got for us... 🙂 -->

0 commit comments

Comments
 (0)