「Guide:Marlin/en」の版間の差分
(ページの作成:「== Find PlatformIO environment == Find the environment (a build preset/toolchain) to use with PlatformIO. We're compiling for Ender 3 v4.2.2 board, so use <code>STM32F103…」) |
(ページの作成:「If your printer or motherboard version is different, proceed with the steps below.」) |
||
39行目: | 39行目: | ||
Choose the one that matches your board. |
Choose the one that matches your board. |
||
+ | == Configure == |
||
− | <div lang="ja" dir="ltr" class="mw-content-ltr"> |
||
+ | Optional: create a git branch specific for this printer, so all changes can be tracked and updated easily. |
||
− | == 設定 == |
||
− | オプション: このプリンターに固有の git ブランチを作成して、すべての変更を簡単に追跡および更新できるようにします。 |
||
{{terminal|text= |
{{terminal|text= |
||
cd $root_dir/marlin |
cd $root_dir/marlin |
||
git checkout -b ender-3 |
git checkout -b ender-3 |
||
}} |
}} |
||
− | </div> |
||
+ | Use the example config. |
||
− | <div lang="ja" dir="ltr" class="mw-content-ltr"> |
||
− | サンプルファイルを使用する。 |
||
{{terminal|text= |
{{terminal|text= |
||
cp $root_dir/config/config/examples/Creality/Ender-3/CrealityV422/{_Bootscreen.h,Configuration_adv.h,Configuration.h,_Statusscreen.h} marlin/Marlin/ |
cp $root_dir/config/config/examples/Creality/Ender-3/CrealityV422/{_Bootscreen.h,Configuration_adv.h,Configuration.h,_Statusscreen.h} marlin/Marlin/ |
||
}} |
}} |
||
− | </div> |
||
<div lang="ja" dir="ltr" class="mw-content-ltr"> |
<div lang="ja" dir="ltr" class="mw-content-ltr"> |
2024年1月30日 (火) 08:49時点における版
Install PlatformIO
root_dir=$PWD export PLATFORMIO_CORE_DIR=$root_dir/pio git clone https://github.com/platformio/platformio-core-installer cd platformio-core-installer && python3 get-platformio.py
Clone Marlin
We clone the version 2.1.2.1, the latest at the time of writing this guide.
git clone -b 2.1.2.1 https://github.com/MarlinFirmware/Marlin marlin cd $root_dir
Also clone example configurations (also for version 2.1.2.1), so we don't have to start from scratch.
git clone -b 2.1.2.1 https://github.com/MarlinFirmware/Configurations config
Find PlatformIO environment
Find the environment (a build preset/toolchain) to use with PlatformIO. We're compiling for Ender 3 v4.2.2 board, so use STM32F103RE_creality
in "Build Marlin with PlatformIO"
If your printer or motherboard version is different, proceed with the steps below.
Search for similar lines in ./Marlin/src/pins/pins.h
file:
grep CREALITY_V422 marlin/Marlin/src/pins/pins.h ./Marlin/src/pins/pins.h:575: #include "stm32f1/pins_CREALITY_V422.h" / STM32F1 / env:STM32F103RE_creality / env:STM32F103RE_creality_xfer / env:STM32F103RC_creality / env:STM32F103RC_creality_xfer / env:STM32F103RE_creality_maple
Choose the one that matches your board.
Configure
Optional: create a git branch specific for this printer, so all changes can be tracked and updated easily.
cd $root_dir/marlin git checkout -b ender-3
Use the example config.
cp $root_dir/config/config/examples/Creality/Ender-3/CrealityV422/{_Bootscreen.h,Configuration_adv.h,Configuration.h,_Statusscreen.h} marlin/Marlin/
オプション: 変更をコミットし、構成が変更されるたびにこれを実行します。 変更の説明を入力します。
cd $root_dir/marlin git add Marlin git commit -m "Ender 3 example config"
PlatformIO で建てる
以前に見つけた PlatformIO プリセットを使用します。
cd $root_dir/marlin $root_dir/pio/penv/bin/platformio run -e STM32F103RE_creality
これによりファームウェア ファイルがビルドされ、コンパイル出力ログで確認できます:
RAM: [= ] 11.6% (used 7592 bytes from 65536 bytes) Flash: [=== ] 27.2% (used 142600 bytes from 524288 bytes) Building .pio/build/STM32F103RE_creality/firmware-20231008-230629.bin
インストール
.pio/build/STM32F103RE_creality/firmware-20231008-230629.bin
をSDカードにコピーします。 名前を変更しないでください。名前が現在のファームウェアと同じ場合、プリンタがアップデートを拒否する可能性があります。SDカードを挿入し、プリンターをリセットします。 起動中に自動的に更新されるはずです。