|
| 1 | +name: Bug Report |
| 2 | +description: File a bug report |
| 3 | +title: "[Bug]: " |
| 4 | +labels: [bug] |
| 5 | +assignees: |
| 6 | +- x0rtrunks |
| 7 | +body: |
| 8 | +- type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + # STOP! |
| 12 | + ### Before posting a bug report here, you must start a discussion on Duet3D forums. This is to help reduce duplicates and solve configuration issues. |
| 13 | + https://forum.duet3d.com/categories |
| 14 | +
|
| 15 | + ### Before posting your issue, please review the following sources to check if your question has already been reported and answered. |
| 16 | +
|
| 17 | + #### Have you checked the documentation? |
| 18 | + https://duet3d.dozuki.com/ |
| 19 | +
|
| 20 | + #### Have you checked the GCODE Wiki? |
| 21 | + https://duet3d.dozuki.com/Wiki/Gcode |
| 22 | +
|
| 23 | + #### Have you checked the firmware release notes? |
| 24 | + RRF2: https://github.com/Duet3D/RepRapFirmware/wiki/Changelog-RRF-1.x-&-2.x |
| 25 | + RRF3: https://github.com/Duet3D/RepRapFirmware/wiki/Changelog-RRF-3.x |
| 26 | +
|
| 27 | + #### Have you searched the forums? |
| 28 | + https://forum.duet3d.com/search |
| 29 | +
|
| 30 | + #### If this is a Beta firmware release, have you checked the Beta Firmware Forum? |
| 31 | + https://forum.duet3d.com/category/30/beta-firmware |
| 32 | +
|
| 33 | + #### Have you searched the existing issues on GitHub? |
| 34 | + |
| 35 | + ### Please complete the following form to the best of your ability. Provide as much detail as possible. |
| 36 | + |
| 37 | + ## Thank you for taking the time to file a bug report. |
| 38 | +- type: checkboxes |
| 39 | + id: Hardware |
| 40 | + attributes: |
| 41 | + label: Which Duet products are you using? |
| 42 | + description: Please list all Duet electronics boards you are using when experiencing your issue. |
| 43 | + options: |
| 44 | + - label: Duet2-Wifi |
| 45 | + - label: Duet2-Ethernet |
| 46 | + - label: Duet Expansion Breakout Board |
| 47 | + - label: Duex2 |
| 48 | + - label: Duex5 |
| 49 | + - label: Duet2-Maestro |
| 50 | + - label: Maestro Dual Driver Expansion |
| 51 | + - label: Duet3-6HC |
| 52 | + - label: Duet3-3HC |
| 53 | + - label: Duet3-1XD |
| 54 | + - label: Duet3-1LC |
| 55 | + - label: Duet3-Tool Distribution Board |
| 56 | + - label: Duet3-Mini5+ |
| 57 | + - label: Duet3-Mini2+ |
| 58 | + - label: Raspberry Pi or other SBC |
| 59 | + - label: SmartEffector |
| 60 | + - label: Magnetic Filament Sensor |
| 61 | + - label: Laser Filament Sensor |
| 62 | + - label: PT100 Daughterboard |
| 63 | + - label: Thermocouple Daughterboard |
| 64 | + - label: PanelDue |
| 65 | + - label: Other |
| 66 | + - label: None |
| 67 | + validations: |
| 68 | + required: true |
| 69 | +- type: input |
| 70 | + id: FirmwareVersion |
| 71 | + attributes: |
| 72 | + label: Firmware Version |
| 73 | + description: What version of our software are you running? Identify by sending M115 |
| 74 | + placeholder: ex. RepRapFirmware 3.2.2, PanelDueFirmware 3.3 |
| 75 | + validations: |
| 76 | + required: true |
| 77 | +- type: input |
| 78 | + id: DWCVersion |
| 79 | + attributes: |
| 80 | + label: Duet Web Control Version |
| 81 | + description: What version of our software are you running? Identify in DWC by going to the Settings, General page |
| 82 | + placeholder: ex. DWC 3.2.2, DWC 2.0 |
| 83 | + validations: |
| 84 | + required: true |
| 85 | +- type: checkboxes |
| 86 | + id: SBCMode |
| 87 | + attributes: |
| 88 | + label: Are you using a Single Board Computer (RaspberryPi) with your Duet? |
| 89 | + description: SBC - Yes or No. |
| 90 | + options: |
| 91 | + - label: Yes I use a SBC. |
| 92 | + - label: No I do not use a SBC. |
| 93 | + validations: |
| 94 | + required: true |
| 95 | +- type: textarea |
| 96 | + id: M122 |
| 97 | + attributes: |
| 98 | + label: Please upload the results of sending M122 in the gcode console. |
| 99 | + description: This diagnostic report will provide a lot of useful information for us. |
| 100 | + placeholder: Results of M122 copy and paste here. |
| 101 | + value: "M122 Report" |
| 102 | + render: shell |
| 103 | + validations: |
| 104 | + required: false |
| 105 | +- type: textarea |
| 106 | + id: config |
| 107 | + attributes: |
| 108 | + label: Please upload the content of your config.g file. |
| 109 | + description: This will show us how your printer is configured at startup. |
| 110 | + placeholder: Copy and paste your config.g here. |
| 111 | + value: "Config.g" |
| 112 | + render: gcode |
| 113 | + validations: |
| 114 | + required: false |
| 115 | +- type: textarea |
| 116 | + id: OtherMacros |
| 117 | + attributes: |
| 118 | + label: Please upload the content of any other releveant macro files. |
| 119 | + description: Homeall.g, bed.g, or a custom macro needed to reproduce the problem. |
| 120 | + placeholder: Copy and paste your macro file here. |
| 121 | + render: gcode |
| 122 | + validations: |
| 123 | + required: false |
| 124 | +- type: textarea |
| 125 | + id: PrinterDetails |
| 126 | + attributes: |
| 127 | + label: Details specific to your printer. |
| 128 | + description: Please tell us about your printer. |
| 129 | + placeholder: Make, model, DIY, kinematics, motors, power supply voltage, heaters, fans, etc. |
| 130 | + validations: |
| 131 | + required: false |
| 132 | +- type: textarea |
| 133 | + id: Links |
| 134 | + attributes: |
| 135 | + label: Links to additional info. |
| 136 | + description: Please share any links to forum threads or photos and videos of the problem. |
| 137 | + validations: |
| 138 | + required: false |
| 139 | +- type: textarea |
| 140 | + id: ProblemDescription |
| 141 | + attributes: |
| 142 | + label: What happened? |
| 143 | + description: Describe the problem in as much detail as possible. |
| 144 | + value: | |
| 145 | + Expected result |
| 146 | + |
| 147 | + Observed result |
| 148 | + |
| 149 | + Steps to reproduce |
| 150 | + |
| 151 | + validations: |
| 152 | + required: true |
0 commit comments