makerbase-mks / MKS-EAGLE

MKS Eagle is an integrated design version of Nano V3.0. It retains the functions of Nano V3, but intergrates 5 TMC2209 drivers on board with UART mode, and uses integrated heat dissipation and four-layer PCB optimization design.
https://www.aliexpress.com/item/1005003183498253.html?spm=a2g0o.store_pc_home.productList_8356958.pic_0
GNU General Public License v3.0
13 stars 2 forks source link

How to build for MKS_Eagle with marlin #3

Closed Voxel3DPrinting closed 2 years ago

Voxel3DPrinting commented 2 years ago

Dear,

I want to build a 3D printer with this motherboard. however, when I try to compile Marlin 2.0.9.2, the Platform.ini environment is not compatible.. (I mean the phrase next to "include_envs = ....." What should I put here to compile my own firmware? Hope to hear from support. Thanks in advance

[platformio]
src_dir      = Marlin
boards_dir   = buildroot/share/PlatformIO/boards
**default_envs = Atmega2560**
include_dir  = Marlin
extra_configs =
    ini/avr.ini
    ini/due.ini
    ini/esp32.ini
    ini/features.ini
    ini/lpc176x.ini
    ini/native.ini
    ini/samd51.ini
    ini/stm32-common.ini
    ini/stm32f0.ini
    ini/stm32f1-maple.ini
    ini/stm32f1.ini
    ini/stm32f4.ini
    ini/stm32f7.ini
    ini/stm32h7.ini
    ini/teensy.ini
mks-viva commented 2 years ago
  1. In platform.ini file, set env = mks_eagle #or 'mks_eagle_usb_flash_drive', mks_eagle_usb_flash_drive_msc
  2. In Configuration.h file, set BOARD as BOARD_MKS_EAGLE; enable 'MKS_TS35_V2'; enable LVGL UI or other UI
Voxel3DPrinting commented 2 years ago

thanks!