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

提供:Kobe Makerspace
(ページの作成:「If your printer or motherboard version is different, proceed with the steps below.」)
(ページの作成:「Use the example config. {{terminal|text= cp $root_dir/config/config/examples/Creality/Ender-3/CrealityV422/{_Bootscreen.h,Configuration_adv.h,Configuration.h,_Statuss…」)
46行目: 46行目:
 
}}
 
}}
   
Use the example config.
+
Use the example config:
 
{{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/
 
}}
 
}}
   
  +
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
58行目: 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)
76行目: 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:50時点における版

Install PlatformIO

Clone Marlin

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

Also 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 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:

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.