From ee7476a0bfcfd9c894fe99398f456a4fe2426209 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Tue, 27 Oct 2020 15:48:06 -0700 Subject: [PATCH 1/2] Update "Bug Report" template (#19906) --- .github/ISSUE_TEMPLATE/bug_report.md | 36 ++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 48beca2c2d..6e735974a9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -9,35 +9,51 @@ assignees: '' ### Bug Description - + -### My Configurations +### Configuration Files -**Required:** Please include a ZIP file containing your `Configuration.h` and `Configuration_adv.h` files. +**Required:** Include a ZIP file containing `Configuration.h` and `Configuration_adv.h`. + +If you've made any other modifications describe them in detail here. ### Steps to Reproduce - + 1. [First Step] 2. [Second Step] 3. [and so on...] -**Expected behavior:** [What you expect to happen] +**Expected behavior:** -**Actual behavior:** [What actually happens] + + +**Actual behavior:** + + #### Additional Information * Provide pictures or links to videos that clearly demonstrate the issue. -* See [How Can I Contribute](#how-can-i-contribute) for additional guidelines. +* See [Contributing to Marlin](https://github.com/MarlinFirmware/Marlin/blob/2.0.x/.github/contributing.md) for additional guidelines. From ba2939b1dc55c04f879ce96e9af990287b4468d2 Mon Sep 17 00:00:00 2001 From: thinkyhead Date: Fri, 30 Oct 2020 00:10:04 +0000 Subject: [PATCH 2/2] Fix bilinear_line_to_destination definition See #19431 --- Marlin/src/feature/bedlevel/abl/abl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/feature/bedlevel/abl/abl.cpp b/Marlin/src/feature/bedlevel/abl/abl.cpp index a585c1e155..39d8815fad 100644 --- a/Marlin/src/feature/bedlevel/abl/abl.cpp +++ b/Marlin/src/feature/bedlevel/abl/abl.cpp @@ -348,7 +348,7 @@ float bilinear_z_offset(const xy_pos_t &raw) { * Prepare a bilinear-leveled linear move on Cartesian, * splitting the move where it crosses grid borders. */ - void bilinear_line_to_destination(const feedRate_t scaled_fr_mm_s, uint16_t x_splits, uint16_t y_splits) { + void bilinear_line_to_destination(const feedRate_t &scaled_fr_mm_s, uint16_t x_splits, uint16_t y_splits) { // Get current and destination cells for this line xy_int_t c1 { CELL_INDEX(x, current_position.x), CELL_INDEX(y, current_position.y) }, c2 { CELL_INDEX(x, destination.x), CELL_INDEX(y, destination.y) };