Merge remote-tracking branch 'upstream/MK3' into flashair_display_ip

This commit is contained in:
odaki 2020-05-10 10:25:13 +09:00
commit dfd60a843d
10 changed files with 255 additions and 230 deletions

View file

@ -285,11 +285,13 @@
#define LIN_ADVANCE #define LIN_ADVANCE
#ifdef LIN_ADVANCE #ifdef LIN_ADVANCE
#define LIN_ADVANCE_K 0 // Unit: mm compression per 1mm/s extruder speed #define LA_K_DEF 0 // Default K factor (Unit: mm compression per 1mm/s extruder speed)
//#define LA_NOCOMPAT // Disable Linear Advance 1.0 compatibility #define LA_K_MAX 10 // Maximum acceptable K factor (exclusive, see notes in planner.cpp:plan_buffer_line)
//#define LA_LIVE_K // Allow adjusting K in the Tune menu #define LA_LA10_MIN LA_K_MAX // Lin. Advance 1.0 threshold value (inclusive)
//#define LA_DEBUG // If enabled, this will generate debug information output over USB. //#define LA_NOCOMPAT // Disable Linear Advance 1.0 compatibility
//#define LA_DEBUG_LOGIC // @wavexx: setup logic channels for isr debugging //#define LA_LIVE_K // Allow adjusting K in the Tune menu
//#define LA_DEBUG // If enabled, this will generate debug information output over USB.
//#define LA_DEBUG_LOGIC // @wavexx: setup logic channels for isr debugging
#endif #endif
// Arc interpretation settings: // Arc interpretation settings:

View file

@ -238,8 +238,8 @@ void get_coordinates();
void prepare_move(); void prepare_move();
void kill(const char *full_screen_message = NULL, unsigned char id = 0); void kill(const char *full_screen_message = NULL, unsigned char id = 0);
void Stop(); void Stop();
bool IsStopped(); bool IsStopped();
void finishAndDisableSteppers();
//put an ASCII command at the end of the current buffer. //put an ASCII command at the end of the current buffer.
void enquecommand(const char *cmd, bool from_progmem = false); void enquecommand(const char *cmd, bool from_progmem = false);

View file

@ -2066,15 +2066,16 @@ static float probe_pt(float x, float y, float z_before) {
inline void gcode_M900() { inline void gcode_M900() {
float newK = code_seen('K') ? code_value_float() : -2; float newK = code_seen('K') ? code_value_float() : -2;
#ifdef LA_NOCOMPAT #ifdef LA_NOCOMPAT
if (newK >= 0 && newK < 10) if (newK >= 0 && newK < LA_K_MAX)
extruder_advance_K = newK; extruder_advance_K = newK;
else else
SERIAL_ECHOLNPGM("K out of allowed range!"); SERIAL_ECHOLNPGM("K out of allowed range!");
#else #else
if (newK == 0) if (newK == 0)
{
extruder_advance_K = 0; extruder_advance_K = 0;
else if (newK == -1)
la10c_reset(); la10c_reset();
}
else else
{ {
newK = la10c_value(newK); newK = la10c_value(newK);
@ -4864,11 +4865,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
case_G80: case_G80:
{ {
mesh_bed_leveling_flag = true; mesh_bed_leveling_flag = true;
#ifndef LA_NOCOMPAT
// When printing via USB there's no clear boundary between prints. Abuse MBL to indicate
// the beginning of a new print, allowing a new autodetected setting just after G80.
la10c_reset();
#endif
#ifndef PINDA_THERMISTOR #ifndef PINDA_THERMISTOR
static bool run = false; // thermistor-less PINDA temperature compensation is running static bool run = false; // thermistor-less PINDA temperature compensation is running
#endif // ndef PINDA_THERMISTOR #endif // ndef PINDA_THERMISTOR
@ -9728,6 +9724,24 @@ void Stop()
bool IsStopped() { return Stopped; }; bool IsStopped() { return Stopped; };
void finishAndDisableSteppers()
{
st_synchronize();
disable_x();
disable_y();
disable_z();
disable_e0();
disable_e1();
disable_e2();
#ifndef LA_NOCOMPAT
// Steppers are disabled both when a print is stopped and also via M84 (which is additionally
// checked-for to indicate a complete file), so abuse this function to reset the LA detection
// state for the next print.
la10c_reset();
#endif
}
#ifdef FAST_PWM_FAN #ifdef FAST_PWM_FAN
void setPwmFrequency(uint8_t pin, int val) void setPwmFrequency(uint8_t pin, int val)
{ {

View file

@ -1,5 +1,6 @@
#include "la10compat.h" #include "la10compat.h"
#include "Marlin.h" #include "Marlin.h"
#include <float.h>
static LA10C_MODE la10c_mode = LA10C_UNKNOWN; // Current LA compatibility mode static LA10C_MODE la10c_mode = LA10C_UNKNOWN; // Current LA compatibility mode
@ -38,7 +39,9 @@ void la10c_mode_change(LA10C_MODE mode)
static float la10c_convert(float k) static float la10c_convert(float k)
{ {
float new_K = k * 0.004 - 0.05; float new_K = k * 0.004 - 0.05;
return (new_K < 0? 0: new_K); return new_K < 0? 0:
new_K > (LA_K_MAX - FLT_EPSILON)? (LA_K_MAX - FLT_EPSILON):
new_K;
} }
@ -52,11 +55,11 @@ float la10c_value(float k)
else if(k < 0) else if(k < 0)
return -1; return -1;
la10c_mode_change(k < 10? LA10C_LA15: LA10C_LA10); la10c_mode_change(k < LA_LA10_MIN? LA10C_LA15: LA10C_LA10);
} }
if(la10c_mode == LA10C_LA15) if(la10c_mode == LA10C_LA15)
return (k >= 0 && k < 10? k: -1); return (k >= 0 && k < LA_K_MAX? k: -1);
else else
return (k >= 0? la10c_convert(k): -1); return (k >= 0? la10c_convert(k): -1);
} }

View file

@ -126,7 +126,7 @@ float extrude_min_temp=EXTRUDE_MINTEMP;
#endif #endif
#ifdef LIN_ADVANCE #ifdef LIN_ADVANCE
float extruder_advance_K = LIN_ADVANCE_K; float extruder_advance_K = LA_K_DEF;
float position_float[NUM_AXIS]; float position_float[NUM_AXIS];
#endif #endif

View file

@ -1356,17 +1356,6 @@ float st_get_position_mm(uint8_t axis)
} }
void finishAndDisableSteppers()
{
st_synchronize();
disable_x();
disable_y();
disable_z();
disable_e0();
disable_e1();
disable_e2();
}
void quickStop() void quickStop()
{ {
DISABLE_STEPPER_DRIVER_INTERRUPT(); DISABLE_STEPPER_DRIVER_INTERRUPT();

View file

@ -69,8 +69,6 @@ void invert_z_endstop(bool endstop_invert);
void checkStepperErrors(); //Print errors detected by the stepper void checkStepperErrors(); //Print errors detected by the stepper
void finishAndDisableSteppers();
extern block_t *current_block; // A pointer to the block currently being traced extern block_t *current_block; // A pointer to the block currently being traced
extern bool x_min_endstop; extern bool x_min_endstop;
extern bool x_max_endstop; extern bool x_max_endstop;

View file

@ -51,6 +51,10 @@
#include "adc.h" #include "adc.h"
#include "config.h" #include "config.h"
#ifndef LA_NOCOMPAT
#include "la10compat.h"
#endif
int scrollstuff = 0; int scrollstuff = 0;
char longFilenameOLD[LONG_FILENAME_LENGTH]; char longFilenameOLD[LONG_FILENAME_LENGTH];

View file

@ -56,7 +56,7 @@
# Some may argue that this is only used by a script, BUT as soon someone accidentally or on purpose starts Arduino IDE # Some may argue that this is only used by a script, BUT as soon someone accidentally or on purpose starts Arduino IDE
# it will use the default Arduino IDE folders and so can corrupt the build environment. # it will use the default Arduino IDE folders and so can corrupt the build environment.
# #
# Version: 1.0.6-Build_13 # Version: 1.0.6-Build_16
# Change log: # Change log:
# 12 Jan 2019, 3d-gussner, Fixed "compiler.c.elf.flags=-w -Os -Wl,-u,vfprintf -lprintf_flt -lm -Wl,--gc-sections" in 'platform.txt' # 12 Jan 2019, 3d-gussner, Fixed "compiler.c.elf.flags=-w -Os -Wl,-u,vfprintf -lprintf_flt -lm -Wl,--gc-sections" in 'platform.txt'
# 16 Jan 2019, 3d-gussner, Build_2, Added development check to modify 'Configuration.h' to prevent unwanted LCD messages that Firmware is unknown # 16 Jan 2019, 3d-gussner, Build_2, Added development check to modify 'Configuration.h' to prevent unwanted LCD messages that Firmware is unknown
@ -118,6 +118,10 @@
# 15 Dec 2019, 3d-gussner, Prepare for switch to Prusa3d/PF-build-env repository # 15 Dec 2019, 3d-gussner, Prepare for switch to Prusa3d/PF-build-env repository
# 15 Dec 2019, 3d-gussner, Fix Audrino user preferences for the chosen board. # 15 Dec 2019, 3d-gussner, Fix Audrino user preferences for the chosen board.
# 17 Dec 2019, 3d-gussner, Fix "timer0_fract = 0" warning by using Arduino_boards v1.0.3 # 17 Dec 2019, 3d-gussner, Fix "timer0_fract = 0" warning by using Arduino_boards v1.0.3
# 28 Apr 2020, 3d-gussner, Added RC3 detection
# 03 May 2020, deliopoulos, Accept all RCx as RC versions
# 05 May 2020, 3d-gussner, Make a copy of `not_tran.txt`and `not_used.txt` as `not_tran_$VARIANT.txt`and `not_used_$VARIANT.txt`
# After compiling All multilanguage vairants it makes it easier to find missing or unused transltions.
#### Start check if OSTYPE is supported #### Start check if OSTYPE is supported
OS_FOUND=$( command -v uname) OS_FOUND=$( command -v uname)
@ -527,7 +531,7 @@ do
# Check development status # Check development status
DEV_CHECK=$(grep --max-count=1 "\bFW_VERSION\b" $SCRIPT_PATH/Firmware/Configuration.h | sed -e's/ */ /g'|cut -d '"' -f2|sed 's/\.//g'|cut -d '-' -f2) DEV_CHECK=$(grep --max-count=1 "\bFW_VERSION\b" $SCRIPT_PATH/Firmware/Configuration.h | sed -e's/ */ /g'|cut -d '"' -f2|sed 's/\.//g'|cut -d '-' -f2)
if [ -z "$DEV_STATUS_SELECTED" ] ; then if [ -z "$DEV_STATUS_SELECTED" ] ; then
if [[ "$DEV_CHECK" == "RC1" || "$DEV_CHECK" == "RC2" ]] ; then if [[ "$DEV_CHECK" == *"RC"* ]] ; then
DEV_STATUS="RC" DEV_STATUS="RC"
elif [[ "$DEV_CHECK" == "ALPHA" ]]; then elif [[ "$DEV_CHECK" == "ALPHA" ]]; then
DEV_STATUS="ALPHA" DEV_STATUS="ALPHA"
@ -682,6 +686,8 @@ do
./lang-build.sh || exit 32 ./lang-build.sh || exit 32
# Combine compiled firmware with languages # Combine compiled firmware with languages
./fw-build.sh || exit 33 ./fw-build.sh || exit 33
cp not_tran.txt not_tran_$VARIANT.txt
cp not_used.txt not_used_$VARIANT.txt
echo "$(tput sgr 0)" echo "$(tput sgr 0)"
# Check if the motherboard is an EINSY and if so only one hex file will generated # Check if the motherboard is an EINSY and if so only one hex file will generated
MOTHERBOARD=$(grep --max-count=1 "\bMOTHERBOARD\b" $SCRIPT_PATH/Firmware/variants/$VARIANT.h | sed -e's/ */ /g' |cut -d ' ' -f3) MOTHERBOARD=$(grep --max-count=1 "\bMOTHERBOARD\b" $SCRIPT_PATH/Firmware/variants/$VARIANT.h | sed -e's/ */ /g' |cut -d ' ' -f3)

405
README.md
View file

@ -1,198 +1,207 @@
# Table of contents # Prusa Firmware MK3
<!--ts--> This repository contains the source code and the development versions of the firmware running on the [Original Prusa i3](https://prusa3d.com/) MK3S/MK3/MK2.5S/MK2.5 line of printers.
* [Linux build](#linux)
* Windows build The latest official builds can be downloaded from [Prusa Drivers](https://www.prusa3d.com/drivers/). Pre-built development releases are also [available here](https://github.com/prusa3d/Prusa-Firmware/releases).
* [Using Arduino](#using-arduino)
* [Using Linux subsystem](#using-linux-subsystem-under-windows-10-64-bit) The firmware for the Original Prusa i3 printers is proudly based on [Marlin 1.0.x](https://github.com/MarlinFirmware/Marlin/) by Scott Lahteine (@thinkyhead) et al. and is distributed under the terms of the [GNU GPL 3 license](LICENSE).
* [Using Git-bash](#using-git-bash-under-windows-10-64-bit)
* [Automated tests](#3-automated-tests)
* [Documentation](#4-documentation) # Table of contents
* [FAQ](#5-faq)
<!--te--> <!--ts-->
* [Linux build](#linux)
* Windows build
# Build * [Using Arduino](#using-arduino)
## Linux * [Using Linux subsystem](#using-linux-subsystem-under-windows-10-64-bit)
* [Using Git-bash](#using-git-bash-under-windows-10-64-bit)
1. Clone this repository and checkout the correct branch for your desired release version. * [Automated tests](#3-automated-tests)
* [Documentation](#4-documentation)
2. Set your printer model. * [FAQ](#5-faq)
- For MK3 --> skip to step 3. <!--te-->
- If you have a different printer model, follow step [2.b](#2b) from Windows build
3. Run `./build.sh` # Build
- Output hex file is at `"PrusaFirmware/lang/firmware.hex"` . In the same folder you can hex files for other languages as well. ## Linux
4. Connect your printer and flash with PrusaSlicer ( Configuration --> Flash printer firmware ) or Slic3r PE. 1. Clone this repository and checkout the correct branch for your desired release version.
- If you wish to flash from Arduino, follow step [2.c](#2c) from Windows build first.
2. Set your printer model.
- For MK3 --> skip to step 3.
_Notes:_ - If you have a different printer model, follow step [2.b](#2b) from Windows build
The script downloads Arduino with our modifications and Rambo board support installed, unpacks it into folder `PF-build-env-\<version\>` on the same level, as your Prusa-Firmware folder is located, builds firmware for MK3 using that Arduino in Prusa-Firmware-build folder on the same level as Prusa-Firmware, runs secondary language support scripts. Firmware with secondary language support is generated in lang subfolder. Use firmware.hex for MK3 variant. Use `firmware_\<lang\>.hex` for other printers. Don't forget to follow step [2.b](#2b) first for non-MK3 printers. 3. Run `./build.sh`
- Output hex file is at `"PrusaFirmware/lang/firmware.hex"` . In the same folder you can hex files for other languages as well.
## Windows
### Using Arduino 4. Connect your printer and flash with PrusaSlicer ( Configuration --> Flash printer firmware ) or Slic3r PE.
_Note: Multi language build is not supported._ - If you wish to flash from Arduino, follow step [2.c](#2c) from Windows build first.
#### 1. Development environment preparation
_Notes:_
**a.** Install `"Arduino Software IDE"` from the official website `https://www.arduino.cc -> Software->Downloads`
The script downloads Arduino with our modifications and Rambo board support installed, unpacks it into folder `PF-build-env-\<version\>` on the same level, as your Prusa-Firmware folder is located, builds firmware for MK3 using that Arduino in Prusa-Firmware-build folder on the same level as Prusa-Firmware, runs secondary language support scripts. Firmware with secondary language support is generated in lang subfolder. Use firmware.hex for MK3 variant. Use `firmware_\<lang\>.hex` for other printers. Don't forget to follow step [2.b](#2b) first for non-MK3 printers.
_It is recommended to use version `"1.8.5"`, as it is used on out build server to produce official builds._
## Windows
**b.** Setup Arduino to use Prusa Rambo board definition ### Using Arduino
_Note: Multi language build is not supported._
* Open Arduino and navigate to File -> Preferences -> Settings
* To the text field `"Additional Boards Manager URLSs"` add `https://raw.githubusercontent.com/prusa3d/Arduino_Boards/master/IDE_Board_Manager/package_prusa3d_index.json` #### 1. Development environment preparation
* Open Board manager (`Tools->Board->Board manager`), and install `Prusa Research AVR Boards by Prusa Research`
**a.** Install `"Arduino Software IDE"` from the official website `https://www.arduino.cc -> Software->Downloads`
**c.** Modify compiler flags in `platform.txt` file
_It is recommended to use version `"1.8.5"`, as it is used on out build server to produce official builds._
* The platform.txt file can be found in Arduino instalation directory, or after Arduino has been updated at: `"C:\Users\(user)\AppData\Local\Arduino15\packages\arduino\hardware\avr\(version)"` If you can locate the file in both places, file from user profile is probably used.
**b.** Setup Arduino to use Prusa Rambo board definition
* Add `"-Wl,-u,vfprintf -lprintf_flt -lm"` to `"compiler.c.elf.flags="` before existing flag "-Wl,--gc-sections"
* Open Arduino and navigate to File -> Preferences -> Settings
For example: `"compiler.c.elf.flags=-w -Os -Wl,-u,vfprintf -lprintf_flt -lm -Wl,--gc-sections"` * To the text field `"Additional Boards Manager URLSs"` add `https://raw.githubusercontent.com/prusa3d/Arduino_Boards/master/IDE_Board_Manager/package_prusa3d_index.json`
* Open Board manager (`Tools->Board->Board manager`), and install `Prusa Research AVR Boards by Prusa Research`
_Notes:_
**c.** Modify compiler flags in `platform.txt` file
_In the case of persistent compilation problems, check the version of the currently used C/C++ compiler (GCC) - should be at leas `4.8.1`; * The platform.txt file can be found in Arduino instalation directory, or after Arduino has been updated at: `"C:\Users\(user)\AppData\Local\Arduino15\packages\arduino\hardware\avr\(version)"` If you can locate the file in both places, file from user profile is probably used.
If you are not sure where the file is placed (depends on how `"Arduino Software IDE"` was installed), you can use the search feature within the file system_
* Add `"-Wl,-u,vfprintf -lprintf_flt -lm"` to `"compiler.c.elf.flags="` before existing flag "-Wl,--gc-sections"
_Name collision for `"LiquidCrystal"` library known from previous versions is now obsolete (so there is no need to delete or rename original file/-s)_
For example: `"compiler.c.elf.flags=-w -Os -Wl,-u,vfprintf -lprintf_flt -lm -Wl,--gc-sections"`
#### 2. Source code compilation
_Notes:_
**a.** Clone this repository`https://github.com/prusa3d/Prusa-Firmware/` to your local drive.
**b.**<a name="2b"></a> In the subdirectory `"Firmware/variants/"` select the configuration file (`.h`) corresponding to your printer model, make copy named `"Configuration_prusa.h"` (or make simple renaming) and copy it into `"Firmware/"` directory. _In the case of persistent compilation problems, check the version of the currently used C/C++ compiler (GCC) - should be at leas `4.8.1`;
If you are not sure where the file is placed (depends on how `"Arduino Software IDE"` was installed), you can use the search feature within the file system_
**c.**<a name="2c"></a> In file `"Firmware/config.h"` set LANG_MODE to 0.
_Name collision for `"LiquidCrystal"` library known from previous versions is now obsolete (so there is no need to delete or rename original file/-s)_
**d.** Run `"Arduino IDE"`; select the file `"Firmware.ino"` from the subdirectory `"Firmware/"` at the location, where you placed the source code `File->Open` Make the desired code customizations; **all changes are on your own risk!**
#### 2. Source code compilation
**e.** Select the target board `"Tools->Board->PrusaResearch Einsy RAMBo"`
**a.** Clone this repository`https://github.com/prusa3d/Prusa-Firmware/` to your local drive.
**f.** Run the compilation `Sketch->Verify/Compile`
**b.**<a name="2b"></a> In the subdirectory `"Firmware/variants/"` select the configuration file (`.h`) corresponding to your printer model, make copy named `"Configuration_prusa.h"` (or make simple renaming) and copy it into `"Firmware/"` directory.
**g.** Upload the result code into the connected printer `Sketch->Upload`
**c.**<a name="2c"></a> In file `"Firmware/config.h"` set LANG_MODE to 0.
* or you can also save the output code to the file (in so called `HEX`-format) `"Firmware.ino.rambo.hex"`: `Sketch->ExportCompiledBinary` and then upload it to the printer using the program `"FirmwareUpdater"`
_note: this file is created in the directory `"Firmware/"`_ **d.** Run `"Arduino IDE"`; select the file `"Firmware.ino"` from the subdirectory `"Firmware/"` at the location, where you placed the source code `File->Open` Make the desired code customizations; **all changes are on your own risk!**
### Using Linux subsystem under Windows 10 64-bit **e.** Select the target board `"Tools->Board->PrusaResearch Einsy RAMBo"`
_notes: Script and instructions contributed by 3d-gussner. Use at your own risk. Script downloads Arduino executables outside of Prusa control. Report problems [there.](https://github.com/3d-gussner/Prusa-Firmware/issues) Multi language build is supported._
- follow the Microsoft guide https://docs.microsoft.com/en-us/windows/wsl/install-win10 **f.** Run the compilation `Sketch->Verify/Compile`
You can also use the 'prepare_winbuild.ps1' powershell script with Administrator rights
- Tested versions are at this moment **g.** Upload the result code into the connected printer `Sketch->Upload`
- Ubuntu other may different
- After the installation and reboot please open your Ubuntu bash and do following steps * or you can also save the output code to the file (in so called `HEX`-format) `"Firmware.ino.rambo.hex"`: `Sketch->ExportCompiledBinary` and then upload it to the printer using the program `"FirmwareUpdater"`
- run command `apt-get update` _note: this file is created in the directory `"Firmware/"`_
- to install zip run `apt-get install zip`
- add few lines at the top of `~/.bashrc` by running `sudo nano ~/.bashrc` ### Using Linux subsystem under Windows 10 64-bit
_notes: Script and instructions contributed by 3d-gussner. Use at your own risk. Script downloads Arduino executables outside of Prusa control. Report problems [there.](https://github.com/3d-gussner/Prusa-Firmware/issues) Multi language build is supported._
export OS="Linux" - follow the Microsoft guide https://docs.microsoft.com/en-us/windows/wsl/install-win10
export JAVA_TOOL_OPTIONS="-Djava.net.preferIPv4Stack=true" You can also use the 'prepare_winbuild.ps1' powershell script with Administrator rights
export GPG_TTY=$(tty) - Tested versions are at this moment
- Ubuntu other may different
use `CRTL-X` to close nano and confirm to write the new entries - After the installation and reboot please open your Ubuntu bash and do following steps
- restart Ubuntu bash - run command `apt-get update`
Now your Ubuntu subsystem is ready to use the automatic `PF-build.sh` script and compile your firmware correctly - to install zip run `apt-get install zip`
- add few lines at the top of `~/.bashrc` by running `sudo nano ~/.bashrc`
#### Some Tips for Ubuntu
- Linux is case sensetive so please don't forget to use capital letters where needed, like changing to a directory export OS="Linux"
- To change the path to your Prusa-Firmware location you downloaded and unzipped export JAVA_TOOL_OPTIONS="-Djava.net.preferIPv4Stack=true"
- Example: You files are under `C:\Users\<your-username>\Downloads\Prusa-Firmware-MK3` export GPG_TTY=$(tty)
- use under Ubuntu the following command `cd /mnt/c/Users/<your-username>/Downloads/Prusa-Firmware-MK3`
to change to the right folder use `CRTL-X` to close nano and confirm to write the new entries
- Unix and windows have different line endings (LF vs CRLF), try dos2unix to convert - restart Ubuntu bash
- This should fix the `"$'\r': command not found"` error Now your Ubuntu subsystem is ready to use the automatic `PF-build.sh` script and compile your firmware correctly
- to install run `apt-get install dos2unix`
- If your Windows isn't in English the Paths may look different #### Some Tips for Ubuntu
Example in other languages - Linux is case sensetive so please don't forget to use capital letters where needed, like changing to a directory
- English `/mnt/c/Users/<your-username>/Downloads/Prusa-Firmware-MK3` will be on a German Windows`/mnt/c/Anwender/<your-username>/Downloads/Prusa-Firmware-MK3` - To change the path to your Prusa-Firmware location you downloaded and unzipped
#### Compile Prusa-firmware with Ubuntu Linux subsystem installed - Example: You files are under `C:\Users\<your-username>\Downloads\Prusa-Firmware-MK3`
- open Ubuntu bash - use under Ubuntu the following command `cd /mnt/c/Users/<your-username>/Downloads/Prusa-Firmware-MK3`
- change to your source code folder (case sensitive) to change to the right folder
- run `./PF-build.sh` - Unix and windows have different line endings (LF vs CRLF), try dos2unix to convert
- follow the instructions - This should fix the `"$'\r': command not found"` error
- to install run `apt-get install dos2unix`
### Using Git-bash under Windows 10 64-bit - If your Windows isn't in English the Paths may look different
_notes: Script and instructions contributed by 3d-gussner. Use at your own risk. Script downloads Arduino executables outside of Prusa control. Report problems [there.](https://github.com/3d-gussner/Prusa-Firmware/issues) Multi language build is supported._ Example in other languages
- Download and install the 64bit Git version https://git-scm.com/download/win - English `/mnt/c/Users/<your-username>/Downloads/Prusa-Firmware-MK3` will be on a German Windows`/mnt/c/Anwender/<your-username>/Downloads/Prusa-Firmware-MK3`
- Also follow these instructions https://gist.github.com/evanwill/0207876c3243bbb6863e65ec5dc3f058 #### Compile Prusa-firmware with Ubuntu Linux subsystem installed
- Download and install 7z-zip from its official website https://www.7-zip.org/ - open Ubuntu bash
By default, it is installed under the directory /c/Program\ Files/7-Zip in Windows 10 - change to your source code folder (case sensitive)
- Run `Git-Bash` under Administrator privilege - run `./PF-build.sh`
- navigate to the directory /c/Program\ Files/Git/mingw64/bin - follow the instructions
- run `ln -s /c/Program\ Files/7-Zip/7z.exe zip.exe`
- If your Windows isn't in English the Paths may look different ### Using Git-bash under Windows 10 64-bit
Example in other languages _notes: Script and instructions contributed by 3d-gussner. Use at your own risk. Script downloads Arduino executables outside of Prusa control. Report problems [there.](https://github.com/3d-gussner/Prusa-Firmware/issues) Multi language build is supported._
- English `/mnt/c/Users/<your-username>/Downloads/Prusa-Firmware-MK3` will be on a German Windows`/mnt/c/Anwender/<your-username>/Downloads/Prusa-Firmware-MK3` - Download and install the 64bit Git version https://git-scm.com/download/win
- English `ln -s /c/Program\ Files/7-Zip/7z.exe zip.exe` will be on a Spanish Windows `ln -s /c/Archivos\ de\ programa/7-Zip/7z.exe zip.exe` - Also follow these instructions https://gist.github.com/evanwill/0207876c3243bbb6863e65ec5dc3f058
#### Compile Prusa-firmware with Git-bash installed - Download and install 7z-zip from its official website https://www.7-zip.org/
- open Git-bash By default, it is installed under the directory /c/Program\ Files/7-Zip in Windows 10
- change to your source code folder - Run `Git-Bash` under Administrator privilege
- run `bash PF-build.sh` - navigate to the directory /c/Program\ Files/Git/mingw64/bin
- follow the instructions - run `ln -s /c/Program\ Files/7-Zip/7z.exe zip.exe`
- If your Windows isn't in English the Paths may look different
Example in other languages
# 3. Automated tests - English `/mnt/c/Users/<your-username>/Downloads/Prusa-Firmware-MK3` will be on a German Windows`/mnt/c/Anwender/<your-username>/Downloads/Prusa-Firmware-MK3`
## Prerequisites - English `ln -s /c/Program\ Files/7-Zip/7z.exe zip.exe` will be on a Spanish Windows `ln -s /c/Archivos\ de\ programa/7-Zip/7z.exe zip.exe`
* c++11 compiler e.g. g++ 6.3.1 #### Compile Prusa-firmware with Git-bash installed
* cmake - open Git-bash
* build system - ninja or gnu make - change to your source code folder
- run `bash PF-build.sh`
## Building - follow the instructions
Create a folder where you want to build tests.
Example: # 3. Automated tests
## Prerequisites
`cd ..` * c++11 compiler e.g. g++ 6.3.1
* cmake
`mkdir Prusa-Firmware-test` * build system - ninja or gnu make
Generate build scripts in target folder. ## Building
Create a folder where you want to build tests.
Example:
Example:
`cd Prusa-Firmware-test`
`cd ..`
`cmake -G "Eclipse CDT4 - Ninja" ../Prusa-Firmware`
`mkdir Prusa-Firmware-test`
or for DEBUG build:
Generate build scripts in target folder.
`cmake -G "Eclipse CDT4 - Ninja" -DCMAKE_BUILD_TYPE=Debug ../Prusa-Firmware`
Example:
Build it.
`cd Prusa-Firmware-test`
Example:
`cmake -G "Eclipse CDT4 - Ninja" ../Prusa-Firmware`
`ninja`
or for DEBUG build:
## Runing
`./tests` `cmake -G "Eclipse CDT4 - Ninja" -DCMAKE_BUILD_TYPE=Debug ../Prusa-Firmware`
# 4. Documentation Build it.
run [doxygen](http://www.doxygen.nl/) in Firmware folder
or visit https://prusa3d.github.io/Prusa-Firmware-Doc for doxygen generated output Example:
# 5. FAQ `ninja`
Q:I built firmware using Arduino and I see "?" instead of numbers in printer user interface.
## Runing
A:Step 1.c was ommited or you updated Arduino and now platform.txt located somewhere in your user profile is used. `./tests`
Q:I built firmware using Arduino and printer now speaks Klingon (nonsense characters and symbols are displayed @^#$&*°;~ÿ) # 4. Documentation
run [doxygen](http://www.doxygen.nl/) in Firmware folder
A:Step 2.c was omitted. or visit https://prusa3d.github.io/Prusa-Firmware-Doc for doxygen generated output
Q:What environment does Prusa use to build the firmware in the first place? # 5. FAQ
Q:I built firmware using Arduino and I see "?" instead of numbers in printer user interface.
A:Our production builds are 99.9% equivalent to https://github.com/prusa3d/Prusa-Firmware#linux this is also easiest way to build as only one step is needed - run single script, which downloads patched Arduino from github, builds using it, then extracts translated strings and creates language variants (for MK2x) or language hex file for external SPI flash (MK3x). But you need Linux or Linux in virtual machine. This is also what happens when you open pull request to our repository - all variants are built by Travis http://travis-ci.org/ (to check for compilation errors). You can see, what is happening in .travis.yml. It would be also possible to get hex built by travis, only deploy step is missing in .travis.yml. You can get inspiration how to deploy hex by travis and how to setup travis in https://github.com/prusa3d/MM-control-01/ repository. Final hex is located in ./lang/firmware.hex Community reproduced this for Windows in https://github.com/prusa3d/Prusa-Firmware#using-linux-subsystem-under-windows-10-64-bit or https://github.com/prusa3d/Prusa-Firmware#using-git-bash-under-windows-10-64-bit .
A:Step 1.c was ommited or you updated Arduino and now platform.txt located somewhere in your user profile is used.
Q:Why are build instructions for Arduino mess.
Q:I built firmware using Arduino and printer now speaks Klingon (nonsense characters and symbols are displayed @^#$&*°;~ÿ)
Y:We are too lazy to ship proper board definition for Arduino. We plan to swich to cmake + ninja to be inherently multiplatform, easily integrate build tools, suport more IDEs, get 10 times shorter build times and be able to update compiler whenewer we want.
A:Step 2.c was omitted.
Q:What environment does Prusa use to build the firmware in the first place?
A:Our production builds are 99.9% equivalent to https://github.com/prusa3d/Prusa-Firmware#linux this is also easiest way to build as only one step is needed - run single script, which downloads patched Arduino from github, builds using it, then extracts translated strings and creates language variants (for MK2x) or language hex file for external SPI flash (MK3x). But you need Linux or Linux in virtual machine. This is also what happens when you open pull request to our repository - all variants are built by Travis http://travis-ci.org/ (to check for compilation errors). You can see, what is happening in .travis.yml. It would be also possible to get hex built by travis, only deploy step is missing in .travis.yml. You can get inspiration how to deploy hex by travis and how to setup travis in https://github.com/prusa3d/MM-control-01/ repository. Final hex is located in ./lang/firmware.hex Community reproduced this for Windows in https://github.com/prusa3d/Prusa-Firmware#using-linux-subsystem-under-windows-10-64-bit or https://github.com/prusa3d/Prusa-Firmware#using-git-bash-under-windows-10-64-bit .
Q:Why are build instructions for Arduino mess.
Y:We are too lazy to ship proper board definition for Arduino. We plan to swich to cmake + ninja to be inherently multiplatform, easily integrate build tools, suport more IDEs, get 10 times shorter build times and be able to update compiler whenewer we want.