Skip to content

Commit

Permalink
Merge pull request #69 from V1EngineeringInc/V1EngineeringInc-SDinitfail
Browse files Browse the repository at this point in the history
SD init fail issue fix
  • Loading branch information
V1EngineeringInc authored Mar 2, 2021
2 parents e31f1a5 + 73ce85a commit 40ac689
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/configs/accessories/reprap_discount_full_graphic_lcd
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
opt_enable \
SDSUPPORT \
REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER

opt_set LCD_TIMEOUT_TO_STATUS "180000"

opt_add ST7920_DELAY_2 "DELAY_NS(250)"
opt_add ST7920_DELAY_3 "DELAY_NS(250)"
if [ "$MARLIN_VERSION" = "2.0.7.2" ]
then
opt_set SPI_SPEED SPI_HALF_SPEED
else
opt_set SD_SPI_SPEED SPI_HALF_SPEED
fi



echo "- Configured for REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER" >> README.md
1 change: 1 addition & 0 deletions src/configs/accessories/reprap_discount_smart_controller
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ opt_enable \
SDSUPPORT \
REPRAP_DISCOUNT_SMART_CONTROLLER


opt_disable \
SHOW_CUSTOM_BOOTSCREEN \

Expand Down
7 changes: 6 additions & 1 deletion src/configs/common/3dp-config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ opt_set DEFAULT_MAX_FEEDRATE "{ 150, 150, 15, 24 }"
opt_set DEFAULT_MAX_ACCELERATION "{ 2000, 2000, 100, 3000 }"
opt_set DEFAULT_ACCELERATION "2000"
opt_set DEFAULT_TRAVEL_ACCELERATION "2000"
opt_set XY_PROBE_SPEED "6000"
if [ "$MARLIN_VERSION" = "2.0.7.2" ]
then
opt_set XY_PROBE_SPEED "6000"
else
opt_set XY_PROBE_FEEDRATE "6000"
fi
opt_set HOMING_FEEDRATE_MM_M "{ (40*60), (40*60), (3*60) }"
opt_set PREHEAT_1_TEMP_HOTEND "196"
opt_set PREHEAT_1_TEMP_BED "62"
Expand Down

0 comments on commit 40ac689

Please sign in to comment.