mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
78 lines
2.3 KiB
YAML
78 lines
2.3 KiB
YAML
name: Bug Report
|
|
description: Report a problem with TinyUSB
|
|
labels: 'Bug 🐞'
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report!
|
|
It's okay to leave some blank if it doesn't apply to your problem.
|
|
|
|
- type: dropdown
|
|
attributes:
|
|
label: Operating System
|
|
options:
|
|
- Linux
|
|
- MacOS
|
|
- RaspberryPi OS
|
|
- Windows 7
|
|
- Windows 10
|
|
- Windows 11
|
|
- Others
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Board
|
|
placeholder: e.g Feather nRF52840 Express
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Firmware
|
|
placeholder: |
|
|
e.g examples/device/cdc_msc. If it is custom firmware, it is preferably compiled like one in example folder and reviewable for people to comment on. The easiest way is
|
|
- Fork this repo, checkout a new branch
|
|
- Add your-own-example based on stock one
|
|
- Push and post it here.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: What happened ?
|
|
placeholder: A clear and concise description of what the bug is.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: How to reproduce ?
|
|
placeholder: |
|
|
Exact steps in chronological order, details should be specific e.g if you use a command/script to test with, please post it as well.
|
|
1. Go to '...'
|
|
2. Click on '....'
|
|
3. See error
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Debug Log
|
|
placeholder: |
|
|
TinyUSB debug log where the issue occurred as attached txt file, best with comments to explain the actual events.
|
|
|
|
Note: To enable logging, add `LOG=3` to to the make command if building with stock examples or set `CFG_TUSB_DEBUG=3` in your tusb_config.h.
|
|
More information can be found at [example's readme](https://github.com/hathach/tinyusb/blob/master/docs/getting_started.md)
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Screenshots
|
|
description: If applicable, add screenshots to help explain your problem.
|
|
validations:
|
|
required: false
|