Skip to content

Commit 117f8ee

Browse files
committed
My MK3S+/Bear/BTT002/TMC-Multi/BMG Build
1 parent 6e74409 commit 117f8ee

File tree

9 files changed

+435
-459
lines changed

9 files changed

+435
-459
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
github: [thinkyhead]
2-
patreon: thinkyhead
3-
custom: ["https://www.thinkyhead.com/donate-to-marlin"]
1+
github: [thisiskeithb]
2+
ko_fi: thisiskeithb

.github/workflows/test-build.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#
2+
# test-build.yml
3+
# Do test build to catch compile errors
4+
#
5+
6+
name: CI
7+
8+
on:
9+
pull_request:
10+
paths-ignore:
11+
- config/**
12+
- data/**
13+
- docs/**
14+
- '**/*.md'
15+
push:
16+
paths-ignore:
17+
- config/**
18+
- data/**
19+
- docs/**
20+
- '**/*.md'
21+
22+
jobs:
23+
test_builds:
24+
name: Test Build
25+
if: github.repository == 'thisiskeithb/Marlin'
26+
27+
runs-on: ubuntu-22.04
28+
29+
steps:
30+
- name: Check Out Commit
31+
uses: actions/checkout@v4
32+
33+
- name: Select Python 3.x
34+
uses: actions/setup-python@v5
35+
with:
36+
python-version: '3.9'
37+
architecture: 'x64'
38+
39+
- name: Install PlatformIO
40+
run: |
41+
pip install -U platformio
42+
pio upgrade --dev
43+
pio pkg update --global
44+
45+
- name: Build Marlin
46+
run: pio run

Marlin/Configuration.h

Lines changed: 144 additions & 107 deletions
Large diffs are not rendered by default.

Marlin/Configuration_adv.h

Lines changed: 189 additions & 154 deletions
Large diffs are not rendered by default.

Marlin/src/inc/Warnings.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -955,3 +955,13 @@
955955
#warning "SMOOTH_LIN_ADVANCE with MIXING_EXTRUDER is untested. Use with caution."
956956
#endif
957957
#endif
958+
959+
/**
960+
* Warn users of personal config
961+
*/
962+
#warning "This is my (thisiskeithb) personal config and can change at any time. Verify settings match your hardware before flashing."
963+
964+
/**
965+
* Please donate
966+
*/
967+
#warning "If you find this project helpful, please consider donating at https://github.com/sponsors/thisiskeithb or https://ko-fi.com/thisiskeithb"

README.md

Lines changed: 37 additions & 185 deletions
Large diffs are not rendered by default.
358 KB
Loading

config/README.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

platformio.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@
1313
[platformio]
1414
src_dir = Marlin
1515
boards_dir = buildroot/share/PlatformIO/boards
16-
default_envs = mega2560
16+
17+
# 1024K/1MB Variant:
18+
#default_envs = BTT_BTT002
19+
20+
# 512K Variant:
21+
default_envs = BTT_BTT002_VET6
22+
1723
include_dir = Marlin
1824
extra_configs =
1925
Marlin/config.ini

0 commit comments

Comments
 (0)