Marlin-Fehler: Build environment 'linux_native' is incompatible with BOARD_RAMPS_14_EFB beheben
English
Deutsch
Problem:
Beim Kompilieren von Marlin für die Simulation erscheint eine Fehlermeldung wie
marlin_error.txt
Error: Build environment 'linux_native' is incompatible with BOARD_RAMPS_14_EFB. Use one of these: mega2560, mega1280Lösung
Marlin/Configuration.h öffnen und die Zeile
Configuration_before.cpp
#ifndef MOTHERBOARD
#define MOTHERBOARD BOARD_RAMPS_14_EFB
#endifändern, um das BOARD_LINUX_RAMPS-Board zu verwenden:
Configuration_after.cpp
// Choose the name from boards.h that matches your setup
#ifndef MOTHERBOARD
#define MOTHERBOARD BOARD_LINUX_RAMPS
#endifAuch wenn die Fehlermeldung anzeigt, dass mega2560 oder mega1280 verwendet werden sollte, muss BOARD_LINUX_RAMPS verwendet werden!
Check out similar posts by category:
3D Printing
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow