|
2 | 2 | name: Bug report
|
3 | 3 | about: Create a report to help us improve
|
4 | 4 | title: ''
|
5 |
| -labels: '' |
| 5 | +labels: 'bug' |
6 | 6 | assignees: ''
|
7 | 7 |
|
8 | 8 | ---
|
9 | 9 |
|
10 |
| -Thanks! for testing out CircuitPython. Now that you have got a problem... you can |
11 |
| -file a bug report for it. Feel free to modify the below format to better suit your issue. |
12 |
| -Also, don't forget to remove me... :) |
| 10 | +<!-- Thanks! for testing out CircuitPython. Now that you have got a problem... |
| 11 | +you can file a bug report for it. Feel free to modify the below format to better |
| 12 | +suit your issue. :) --> |
13 | 13 |
|
14 | 14 | **Firmware**
|
15 | 15 |
|
| 16 | +<!-- Include the version of CircuitPython you're running. You can see it in the |
| 17 | +`boot_out.txt` file, as well as in the REPL. --> |
| 18 | + |
16 | 19 | ```python
|
17 | 20 | Adafruit CircuitPython 6.2.0-beta.2 on 2021-03-01; Raspberry Pi Pico with rp2040
|
18 | 21 | ```
|
| 22 | + |
19 | 23 | **Code/REPL**
|
20 | 24 |
|
| 25 | +<!-- Include your code that reproduces the bug here. Try to distill down to the |
| 26 | +minimum possible to reproduce. --> |
| 27 | + |
21 | 28 | ```python
|
22 | 29 | import busio, bitbangio
|
23 | 30 | i2c = bitbangio.I2C(board.GP1, board.GP0)
|
24 | 31 | ```
|
| 32 | + |
25 | 33 | **Behavior**
|
26 | 34 |
|
| 35 | +<!-- What happens when you run the code above? Include any error messages. --> |
| 36 | + |
27 | 37 | ```python
|
28 | 38 | Traceback (most recent call last):
|
29 | 39 | File "<stdin>", line 1, in <module>
|
30 | 40 | TimeoutError: Clock stretch too long
|
31 | 41 | ```
|
32 |
| -**Description** _(optional)_ |
| 42 | + |
| 43 | +**Description** |
| 44 | + |
| 45 | +<!-- Optionally, describe the issue in more detail. Here are some examples: --> |
33 | 46 |
|
34 | 47 | - Error while using i2c...
|
35 | 48 | - Only happens when...
|
36 | 49 | - might be related to #4291...
|
37 | 50 |
|
38 |
| -**Additional Info** _(optional)_ |
| 51 | +**Additional Info** |
| 52 | + |
| 53 | +<!-- Optionally, add any other information like hardware connection, scope output etc. |
| 54 | +If you have already done some debugging, mention it here. --> |
39 | 55 |
|
40 |
| -Any other information like hardware connection, scope output etc. |
| 56 | +Removing [this](url) line resolves the issue. |
0 commit comments