2021-03-03 00:52:33 -05:00
|
|
|
---
|
|
|
|
name: Bug report
|
|
|
|
about: Create a report to help us improve
|
|
|
|
title: ''
|
2021-03-03 16:08:46 -05:00
|
|
|
labels: 'bug'
|
2021-03-03 00:52:33 -05:00
|
|
|
assignees: ''
|
|
|
|
|
|
|
|
---
|
|
|
|
|
2021-03-03 16:08:46 -05:00
|
|
|
<!-- Thanks! for testing out CircuitPython. Now that you have got a problem...
|
|
|
|
you can file a bug report for it. Feel free to modify the below format to better
|
|
|
|
suit your issue. :) -->
|
2021-03-03 00:52:33 -05:00
|
|
|
|
|
|
|
**Firmware**
|
|
|
|
|
2021-03-03 16:08:46 -05:00
|
|
|
<!-- Include the version of CircuitPython you're running. You can see it in the
|
|
|
|
`boot_out.txt` file, as well as in the REPL. -->
|
|
|
|
|
2021-03-03 00:52:33 -05:00
|
|
|
```python
|
|
|
|
Adafruit CircuitPython 6.2.0-beta.2 on 2021-03-01; Raspberry Pi Pico with rp2040
|
|
|
|
```
|
2021-03-03 16:08:46 -05:00
|
|
|
|
2021-03-03 00:52:33 -05:00
|
|
|
**Code/REPL**
|
|
|
|
|
2021-03-03 16:08:46 -05:00
|
|
|
<!-- Include your code that reproduces the bug here. Try to distill down to the
|
|
|
|
minimum possible to reproduce. -->
|
|
|
|
|
2021-03-03 00:52:33 -05:00
|
|
|
```python
|
|
|
|
import busio, bitbangio
|
|
|
|
i2c = bitbangio.I2C(board.GP1, board.GP0)
|
|
|
|
```
|
2021-03-03 16:08:46 -05:00
|
|
|
|
2021-03-03 00:52:33 -05:00
|
|
|
**Behavior**
|
|
|
|
|
2021-03-03 16:08:46 -05:00
|
|
|
<!-- What happens when you run the code above? Include any error messages. -->
|
|
|
|
|
2021-03-03 00:52:33 -05:00
|
|
|
```python
|
|
|
|
Traceback (most recent call last):
|
|
|
|
File "<stdin>", line 1, in <module>
|
|
|
|
TimeoutError: Clock stretch too long
|
|
|
|
```
|
2021-03-03 16:08:46 -05:00
|
|
|
|
|
|
|
**Description**
|
|
|
|
|
|
|
|
<!-- Optionally, describe the issue in more detail. Here are some examples: -->
|
2021-03-03 00:52:33 -05:00
|
|
|
|
|
|
|
- Error while using i2c...
|
|
|
|
- Only happens when...
|
|
|
|
- might be related to #4291...
|
|
|
|
|
2021-03-03 16:08:46 -05:00
|
|
|
**Additional Info**
|
|
|
|
|
|
|
|
<!-- Optionally, add any other information like hardware connection, scope output etc.
|
|
|
|
If you have already done some debugging, mention it here. -->
|