Skip to content

Commit

Permalink
Merge pull request #63 from V1EngineeringInc/moar-boards
Browse files Browse the repository at this point in the history
Added more configurations. These seem logical, but how can you tell?
  • Loading branch information
V1EngineeringInc authored Feb 3, 2021
2 parents 0fc8725 + fef4f04 commit e31f1a5
Show file tree
Hide file tree
Showing 8 changed files with 102 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/rambo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ jobs:
'["2.0.7.2"]') }}
machine:
- V13DP_MiniRambo
- V13DP_Rambo
- V1CNC_MiniRambo
- V1CNC_Rambo
- V1CNC_Rambo_Dual
- V1CNC_Rambo_DualLR
- V1ZXY_MiniRambo
- V1ZXY_Rambo

steps:

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ramps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
- V1ZXY_Ramps
- V1CNC_Ramps
- V1CNC_Ramps_Dual
- V1CNC_Ramps_DualLR

steps:

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/skrpro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ jobs:
github.event_name == 'pull_request' && '["bugfix-2.0.x", "2.0.7.2"]' ||
'["2.0.7.2"]') }}
machine:
- V13DP_SkrPro_2209
- V1CNC_SkrPro_2209
- V1CNC_SkrPro_DualLR_2209
- V1CNC_SkrPro_Dual_2209
- V1ZXY_SkrPro_2209

steps:

Expand Down
16 changes: 16 additions & 0 deletions src/configs/V13DP_Rambo
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

set -e

restore_configs

export V1_VERSION=${V1_VERSION}P

$CFGDIR/common/v1-base-config
$CFGDIR/common/3dp-config
$CFGDIR/boards/rambo
$CFGDIR/accessories/reprap_discount_full_graphic_lcd
$CFGDIR/accessories/aero-extruder
$CFGDIR/accessories/auto-filament-change

export PLATFORMIO_ENV=rambo
22 changes: 22 additions & 0 deletions src/configs/V13DP_SkrPro_2209
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/bin/bash

set -e

restore_configs

export V1_VERSION=${V1_VERSION}P

$CFGDIR/common/v1-base-config
$CFGDIR/common/3dp-config
$CFGDIR/boards/skr_pro
$CFGDIR/accessories/tmc2209
$CFGDIR/accessories/reprap_discount_full_graphic_lcd
$CFGDIR/accessories/aero-extruder
$CFGDIR/accessories/auto-filament-change

opt_set X_DRIVER_TYPE "TMC2209"
opt_set Y_DRIVER_TYPE "TMC2209"
opt_set Z_DRIVER_TYPE "TMC2209"
opt_set E0_DRIVER_TYPE "TMC2209"

export PLATFORMIO_ENV=BIGTREE_SKR_PRO
23 changes: 23 additions & 0 deletions src/configs/V1CNC_Ramps_DualLR
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/bin/bash

set -e

restore_configs

export V1_VERSION=${V1_VERSION}DL

$CFGDIR/common/v1-base-config
$CFGDIR/common/cnc-config
$CFGDIR/boards/ramps
$CFGDIR/accessories/drv8825
$CFGDIR/accessories/reprap_discount_full_graphic_lcd
$CFGDIR/accessories/dual-drivers-on-yz

opt_enable \
X2_DRIVER_TYPE \
Y2_DRIVER_TYPE

opt_disable \
E0_DRIVER_TYPE

export PLATFORMIO_ENV=mega2560
15 changes: 15 additions & 0 deletions src/configs/V1ZXY_Rambo
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

set -e

restore_configs

export V1_VERSION=${V1_VERSION}Z

$CFGDIR/common/v1-base-config
$CFGDIR/common/zenxy-config
$CFGDIR/boards/rambo
$CFGDIR/accessories/reprap_discount_full_graphic_lcd
$CFGDIR/accessories/no-dual-endstops

export PLATFORMIO_ENV=rambo
21 changes: 21 additions & 0 deletions src/configs/V1ZXY_SkrPro_2209
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

set -e

restore_configs

export V1_VERSION=${V1_VERSION}Z

$CFGDIR/common/v1-base-config
$CFGDIR/common/zenxy-config
$CFGDIR/boards/skr_pro
$CFGDIR/accessories/tmc2209
$CFGDIR/accessories/reprap_discount_full_graphic_lcd
$CFGDIR/accessories/no-dual-endstops

opt_set X_DRIVER_TYPE "TMC2209"
opt_set Y_DRIVER_TYPE "TMC2209"
opt_set Z_DRIVER_TYPE "TMC2209"
opt_set E0_DRIVER_TYPE "TMC2209"

export PLATFORMIO_ENV=BIGTREE_SKR_PRO

0 comments on commit e31f1a5

Please sign in to comment.