「Guide:Marlin/en」の版間の差分

提供:Kobe Makerspace
(ページの作成:「== 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…」)
(ページの作成:「Optional: commit the changes, and do this every time the config is changed. Provide a description of the changes. {{terminal|text= cd $root_dir/marlin git add Marlin git…」)
 
(同じ利用者による、間の3版が非表示)
14行目: 14行目:
 
}}
 
}}
   
Also clone example configurations (also for version 2.1.2.1), so we don't have to start from scratch.
+
Clone example configurations (also for version 2.1.2.1), so we don't have to start from scratch.
 
{{terminal|text=
 
{{terminal|text=
 
git clone -b 2.1.2.1 https://github.com/MarlinFirmware/Configurations config
 
git clone -b 2.1.2.1 https://github.com/MarlinFirmware/Configurations config
20行目: 20行目:
   
 
== Find PlatformIO environment ==
 
== 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>STM32F103RE_creality</code> in "Build Marlin with PlatformIO"
+
Find the environment (a build preset/toolchain) to use with PlatformIO. We're compiling for Ender 3 v4.2.2 board, so use <code>STM32F103RE_creality</code> in "Build with PlatformIO" section.
   
 
If your printer or motherboard version is different, proceed with the steps below.
 
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>
 
   
  +
Optional: commit the changes, and do this every time the config is changed. Provide a description of the changes.
<div lang="ja" dir="ltr" class="mw-content-ltr">
 
オプション: 変更をコミットし、構成が変更されるたびにこれを実行します。 変更の説明を入力します。
 
 
{{terminal|text=
 
{{terminal|text=
 
cd $root_dir/marlin
 
cd $root_dir/marlin
62行目: 57行目:
 
git commit -m "Ender 3 example config"
 
git commit -m "Ender 3 example config"
 
}}
 
}}
</div>
 
   
  +
== Build with PlatformIO ==
<div lang="ja" dir="ltr" class="mw-content-ltr">
 
== PlatformIO で建てる ==
+
Use the PlatformIO environment that we found before.
以前に見つけた PlatformIO プリセットを使用します。
 
 
{{terminal|text=
 
{{terminal|text=
 
cd $root_dir/marlin
 
cd $root_dir/marlin
 
$root_dir/pio/penv/bin/platformio run -e STM32F103RE_creality
 
$root_dir/pio/penv/bin/platformio run -e STM32F103RE_creality
 
}}
 
}}
</div>
 
   
  +
This builds a firmware file, and you can find it in the compilation output log:
<div lang="ja" dir="ltr" class="mw-content-ltr">
 
これによりファームウェア ファイルがビルドされ、コンパイル出力ログで確認できます:
 
 
{{terminal|text=
 
{{terminal|text=
 
RAM: [= ] 11.6% (used 7592 bytes from 65536 bytes)
 
RAM: [= ] 11.6% (used 7592 bytes from 65536 bytes)
80行目: 71行目:
 
Building .pio/build/STM32F103RE_creality/firmware-20231008-230629.bin
 
Building .pio/build/STM32F103RE_creality/firmware-20231008-230629.bin
 
}}
 
}}
</div>
 
   
  +
== Installation ==
<div lang="ja" dir="ltr" class="mw-content-ltr">
 
  +
Copy <code>.pio/build/STM32F103RE_creality/firmware-20231008-230629.bin</code> to
== インストール ==
 
  +
the SD card. Do not rename it, otherwise the printer may refuse to update if the name is the same as the current firmware.
<code>.pio/build/STM32F103RE_creality/firmware-20231008-230629.bin</code>をSDカードにコピーします。 名前を変更しないでください。名前が現在のファームウェアと同じ場合、プリンタがアップデートを拒否する可能性があります。SDカードを挿入し、プリンターをリセットします。 起動中に自動的に更新されるはずです。
 
  +
</div>
 
  +
Insert the SD card and reset the printer. It should update itself during the boot.

2024年1月30日 (火) 08:54時点における最新版

Install PlatformIO

Clone Marlin

We clone the version 2.1.2.1, the latest at the time of writing this guide.

Clone example configurations (also for version 2.1.2.1), so we don't have to start from scratch.

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 with PlatformIO" section.

If your printer or motherboard version is different, proceed with the steps below.

Search for similar lines in ./Marlin/src/pins/pins.h file:

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.

Use the example config:

Optional: commit the changes, and do this every time the config is changed. Provide a description of the changes.

Build with PlatformIO

Use the PlatformIO environment that we found before.

This builds a firmware file, and you can find it in the compilation output log:

Installation

Copy .pio/build/STM32F103RE_creality/firmware-20231008-230629.bin to the SD card. Do not rename it, otherwise the printer may refuse to update if the name is the same as the current firmware.

Insert the SD card and reset the printer. It should update itself during the boot.