tinyusb/.github/ISSUE_TEMPLATE/bug_report.yml

79 lines
2.4 KiB
YAML
Raw Normal View History

2021-06-28 16:25:22 +07:00
name: Bug Report
2021-06-28 16:30:38 +07:00
description: Report a problem with TinyUSB
labels: 'Bug 🐞'
2021-06-28 16:25:22 +07:00
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.
2021-06-28 16:33:21 +07:00
2021-06-28 16:25:22 +07:00
- type: dropdown
attributes:
label: Operating System
options:
- Linux
- MacOS
- RaspberryPi OS
- Windows 7
- Windows 10
- Windows 11
- Others
2021-06-28 16:33:21 +07:00
validations:
required: true
2021-06-28 16:25:22 +07:00
- type: input
attributes:
label: Board
placeholder: e.g Feather nRF52840 Express
validations:
2021-06-28 16:30:38 +07:00
required: true
2021-06-28 16:33:21 +07:00
2021-06-28 16:25:22 +07:00
- type: textarea
attributes:
label: Firmware
2021-06-28 16:37:13 +07:00
placeholder: |
2021-11-22 11:27:37 +07:00
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
2021-11-22 11:26:23 +07:00
- Fork this repo, checkout a new branch
- Add your-own-example based on stock one
- Push and post it here.
2021-06-28 16:25:22 +07:00
validations:
2021-06-28 16:30:38 +07:00
required: true
2021-06-28 16:33:21 +07:00
2021-06-28 16:25:22 +07:00
- type: textarea
attributes:
label: What happened ?
placeholder: A clear and concise description of what the bug is.
validations:
required: true
2021-06-28 16:33:21 +07:00
2021-06-28 16:25:22 +07:00
- type: textarea
attributes:
label: How to reproduce ?
placeholder: |
2021-11-22 11:26:23 +07:00
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.
2021-06-28 16:25:22 +07:00
1. Go to '...'
2. Click on '....'
3. See error
validations:
required: true
2021-06-28 16:33:21 +07:00
2021-06-28 16:25:22 +07:00
- type: textarea
attributes:
2022-03-12 16:58:37 +07:00
label: Debug Log as txt file
2021-06-28 16:25:22 +07:00
placeholder: |
2022-03-12 16:58:37 +07:00
Attach your debug log txt file here, where the issue occurred, best with comments to explain the actual events.
Note1: Please DO NOT paste your lengthy log contents here since it hurts the readibility.
Note2: 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.
2021-06-28 16:39:31 +07:00
More information can be found at [example's readme](https://github.com/hathach/tinyusb/blob/master/docs/getting_started.md)
2021-06-28 16:25:22 +07:00
validations:
required: false
2021-06-28 16:33:21 +07:00
2021-06-28 16:25:22 +07:00
- type: textarea
attributes:
2021-06-28 16:37:13 +07:00
label: Screenshots
description: If applicable, add screenshots to help explain your problem.
2021-06-28 16:25:22 +07:00
validations:
required: false