Notifications
Clear all

5.1.0 Firmware for Original Prusa MINI, is out!  

  RSS
Same Old Shane
(@same-old-shane)
Member Admin
5.1.0 Firmware for Original Prusa MINI, is out!

Hello all;
We are pleased to announce our release of the final release version of our 5.1.0 firmware. The following updates, changes and features can be found below. Please make sure to download the correct version of the firmware for your machine on our github page or from the main launch page of your printer located on our site.

Summary

Here’s a quick overview:

  • Firmware update instructions, preparation for OTA updates
  • Printing speed boost with Input Shaper and Pressure Advance (XL and MINI)
  • Major updates to network code; Instant Printing feature
  • Major updates to Prusa Connect and network communication
  • Introducing new efficient open-source Binary G-code format
  • New useful pre-print screen for XL Multi-Tool printers
  • Cancel object directly from printer’s menu
  • Octoprint support information
  • Additional improvements and tweaks
  • QOI image thumbnails instead of PNG to save space
  • Fixes and changes

This is the stable release of firmware 5.1.0 with Input Shaper for the Original Prusa XL and MINI, featuring major changes and improvements to the code and user interface. This release is recommended to all users.

If you are not using alpha/beta releases, upgrading from previous versions will give you plenty of new options and features to dig into. We’re covering everything important in these release notes, including changes introduced in alpha/beta releases.

Firmware update instructions + new bootloader (XL, MK4/MK3.9, MINI)

In the case of MK4 and XL, download the firmware file below, copy it onto a USB drive, and insert it into the printer. During the boot, the printer will check for the firmware file and ask you to confirm the update.

In the case of the MINI/MINI+ printer make sure you are running either the previous 5.1.0-alpha2 or at least firmware 4.4.1. Once the 4.4.1 update is installed, proceed to flashing the 5.1.0 firmware. The upgrade might take longer than usual.

While flashing this firmware release, the printer’s bootloader will be updated as well. The new bootloader improves support for OTA (over-the-air) updates from Prusa Connect. Also, the graphics of the bootloader now matches the rest of the UI.

Input Shaper and Pressure Advance for faster printing comes to XL and MINI

After the MK4/MK3.9 models, we’re now adding Input Shaper and Pressure Advance to the Original Prusa XL (all versions) and MINI! This is a major upgrade that noticeably boosts printing speeds and we strongly recommend updating the firmware. The Input Shaper functionality for XL and MINI was available in previous firmware releases but this is the first stable release with this feature.

Input Shaper is a feature designed to reduce ringing (also known as ghosting) by canceling resonance vibrations. It analyzes the printer’s movements and applies a filter to the input signals. Thanks to faster travel speed and acceleration, it can also minimize stringing. It also enables much faster printing.

Pressure Advance is another important addition to the firmware’s set of features. This function aims to improve the quality of printed parts by compensating for the pressure changes in the nozzle during printing. Pressure Advance together with Input Shaper enables the printing of better-looking models, reducing ringing, overshoots and issues with inconsistent filament extrusion. They also enable faster printing.

Precise stepping is a new implementation of the stepper routine, that allows precise timing of motor steps. It was a necessary prerequisite for both Input shaper and Pressure advance.

Please keep in mind that you need to slice your models with the newest PrusaSlicer IS-enabled profiles. We also recommend updating to the latest version of PrusaSlicer. Older G-codes are compatible but won’t be printed faster!!

Original Prusa XL - Current Input Shaper limitations

In this firmware release, the Crash Detection feature is temporarily disabled on the Original Prusa XL because overly tight belts may trigger a false crash detection. We’re currently working on improvements in belt tension tuning. It will likely be accompanied by a new belt tuning app profile.

Major update of the network code and Instant Printing feature

We have made major improvements to the network code to increase the speed of network printing. No longer do you need to copy files onto a USB drive and walk to the printer. You can keep the USB in the printer and send files via Prusa Connect.

With G-code streaming support, you can start the print without downloading the entire file to the printer beforehand. Instead, only a small portion of the file is downloaded, allowing the print job to start almost immediately. The remaining G-code is automatically downloaded while the print is in progress. In most cases, the print starts within seconds.

You can also add a physical printer in PrusaSlicer and use it to send the sliced file via Prusa Connect (G-code streaming enabled) and start the print job from there with just two mouse clicks. However, If you add you printer via PrusaLink the G-code streaming / Instant Printing features is not supported.

We are also introducing a new G-code format, a binary G-code, which is more space-efficient (more on that later).

276947967-1be7ea23-a36a-4eee-b0d2-c0d101676cc7

Last, but not least, we have further optimized the USB writing speeds.

Major updates for Prusa Connect and network communications

The Prusa Connect wizard has been updated and now shows the number of attempts to establish a connection. In case it fails, it displays an error message and a link to relevant troubleshooting articles.

We’re also introducing a new, easier way to connect your printer to your wireless network through PrusaSlicer. Initiate the Wi-Fi setup wizard on the printer and let the system create and empty configuration file on the USB drive. Then, take the USB drive, plug it into your PC and start PrusaSlicer. The software will show a message offering you an automatic population of the configuration file values. This will transfer your current Wi-Fi login from your PC to the configuration file on the USB.

Prusa Connect now correctly synchronizes the contents of the USB drive, so you can view the files remotely via your web browser. Prusa Connect transfers have been vastly improved with the introduction of the G-code streaming and smaller binary G-code file format. The system can also alert you in case there’s an issue preventing you from printing - e.g., if the filament in the G-code does not match the currently loaded filament (this is called “attention state” in Prusa Connect). As was mentioned earlier, network transfers can recover from power and/or network failures, except for some rare cases.

In case of a fatal network failure, the print is paused once it detects that the G-code is no longer being streamed. When the connection is not about to be restored anytime soon, you can manually resume the print. Take the USB drive from the printer, plug it into your PC and replace the partially downloaded .gcode file (shown as a folder) with the regular complete .gcode file. When you plug the USB drive back into the printer, the system will recognize the file and find exactly the part of the code where the print stopped and the print job will be resumed.

Last, but not least, Prusa Connect now allows you to flash your printer firmware remotely. You need to have your 3D printer added to Connect and then you can download and transfer the firmware file to your printer. Connect will then invoke the firmware flashing procedure.

New Binary G-code

G-code files are easy to read and interpret, but their downside is that the data is not saved efficiently and the file size is often very large. Compression of the file is problematic because the printers usually run on limited hardware and they may not have enough memory and/or CPU power to decompress it. Several solutions to the problem were proposed by members of the community, such as MeatPack encoding (utilizing the fact that the character set of a typical G-code is very limited) or the heatshrink compression algorithm (designed to have very small memory requirements).

We are proposing a new standard for a binary G-code format for encoding and compressing ASCII G-code files (see the specification). The format is flexible and the encoding and compression of individual blocks is variable. We also provide a libbgcode library which contains the routines to convert ASCII G-codes to binary and vice versa. The library is written in C++ and the repository includes bindings for Python.

Regarding the comparison of ASCII vs binary G-code sizes, the result depends on the contents of the G-code. Our testing shows that using binary G-code reduces the size by about 70 % on average. Using arc fitting (described above) at the same time can reduce the size even further. The following chart shows the comparison for 10 randomly selected 3MF projects:

276947148-4342e1cd-69d3-4a91-b325-3f7b57a5e902

The support for the new .bgcode file format was implemented in PrusaSlicer, including its export, loading configs, and previewing G-code or file associations. Exporting binary G-code can be enabled in Print Settings->Output options->Export as binary G-code. An option to convert ASCII G-code to binary (or the opposite) has been added to the File menu.

To print a binary G-code, it has to be supported by the firmware of the printer. For Original Prusa MINI, MK4 and XL printers, the first stable firmware release that supports this feature is 5.1.0, older stable firmware versions will not see the .bgcode files.

We would like to thank Scott Vokes (@atomicobject) for his work on heatshrink and
Scott Mudge (@scottmudge) for developing and maintaining MeatPack.

QOI instead of PNG (XL, MK4, MINI)

Until this release, the thumbnails for G-code were in PNG format, which was rather resource-heavy. We have decided to switch to another format called QOI, which is way less demanding, and we can utilize the freed-up resources to bring more features in future releases.

The only downside of removing the support for PNG is that all the G-codes sliced until now, won't have a visible thumbnail on firmware 5.1.0 or newer. For now, the only solution is to reslice the G-code in PrusaSlicer 2.7.0 or newer.

Pre-print screen (XL with 2-5 toolheads)

This is a huge update for all XL Multi-Tool owners that greatly improves the printing experience!

When you slice a multi-material object, the resulting G-code carries information about how individual materials/extruders are assigned to various parts of the object. Usually, you need to take note of this setup and make sure that PrusaSlicer settings and the actual materials loaded in the XL are in sync.

Now, we’re introducing a new screen that makes this so much easier. Plus, it allows you to set up the Spool Join function (for depleting leftover filaments) in a few clicks.

This new screen allows you to remap the extruders/materials to different slots. For example, you can switch extruders one and three if you find out that the loaded colors do not match the layout in the G-code. This also makes, e.g., sharing G-codes much easier, because you’re not limited by the “hardwired” material configuration inside the G-code, but you can modify the assigned materials in this screen.

Spool Join is also a function worth mentioning. By using the pre-print screen, you can assign multiple filaments to a single print job so you can easily consume all the remaining filament on multiple spools.

The printer has built-in safety checks to process the G-code before the print and compare the information contained in it with the printer’s configuration to prevent it from printing incompatible print files. The printer will display a notification in case there’s a conflict (e.g., different nozzle diameter, etc.).

UI tweaks and updates

Various print-related screens have been updated to show more information. The print progress screen features a new layout, the print end screen now displays more statistics - total print time, material consumption, and the prime tower material consumption. The printing screen now displays more information - next to the percentual progress info.

Cancel Object

We’re introducing a new option to cancel the printing of an object directly from the printer’s menu - only the selected object will be skipped while the other objects on the print bed will continue to be printed. This is extremely handy in case something goes wrong and, e.g., an object detaches from the heatbed. Thanks to this functionality, you don’t need to cancel the entire print, but you can simply choose to skip the object and continue with the rest.

During a running print, select the Cancel Object menu item, then select from the list of objects the one that should be skipped. You can, of course, use this function multiple times if necessary.

Since in many cases, the objects are instances and their names might be confusing (e.g., Instance 1, Instance 2, Instance 3), it could become difficult to recognize which name belongs to which object. This is why we also added the “Cancel Current Object” action. Wait for the nozzle to get to the object you want to skip and select Cancel Current Object. The system will automatically recognize the correct part of the G-code and disable it. Using Cancel Current Object is the recommended method.

In case you selected an incorrect object, you can always use the menu actions to continue printing it.

Improved Octoprint support

With the 5.1.0 firmware release, we’re introducing improved Octoprint support.

To make sure everything works correctly, you need to update the Octoprint profile with the following G-codes (in the GCODE Scripts section):

  • After print job is cancelled: M604
  • After print job is paused: M601
  • Before print job is resumed: M602

Please keep in mind that support for Octoprint has several limitations at the present:

  • Crash detection and Power Panic are not supported
  • The heat absorption screen on the XL is not displayed and it’s not possible to skip it
  • Multi-Tool XL is not supported at the moment
  • Binary G-Codes are not supported

Further improvements and tweaks:

  • Selftest has been unified across MK4, MK3.9 and XL platforms
  • Selftest now skips the nozzle heater test in case the fan test failed
  • The fan test in Selftest has been improved - now it starts at max RPM and gradually decreases the speed
  • Selftest no longer creates log files
  • New robust RNG for Prusa Connect
  • New robust code for Mesh Bed Leveling and Loadcell sensor readings
  • Added the option to set the printer’s status as "ready" for Prusa Connect directly from the printer menu

Fixes

  • “Negative step time” BSOD has been fixed
  • Adjusted texts on the MINI to fit the screen
  • Power panic no longer triggers a watchdog reset
  • Fixed footer settings migration between 4.7.0 and 4.7.2

Download link;
         github.com/prusa3d/Prusa-Firmware-Buddy/releases/tag/v5.1.0

          How to flash the firmware;

         Copy the firmware file (.bbf) onto the USB drive with FAT32 formatting. Insert the flash drive in the MINI's USB port Turn the printer ON (or reboot it) A new screen will appear. Confirm you want to flash the firmware

          Please report any bug here:
          github.com/prusa3d/Prusa-Firmware/issues

Shane (AKA FromPrusa)

Posted : 25/11/2023 1:35 pm
Renze
(@renze)
Eminent Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Love the upgrade. Have been using the alpha's too. Especially the working of Connect has improved a lot!.

Only cancel object doesn't seem to be working on the mini+ and that wasn't made clear in the release notes on Github or the blog.

At least I can't find it in the menu though I have sliced a .bgcode file with multiple objects. 

 

Posted : 25/11/2023 1:52 pm
mtrakal
(@mtrakal)
Active Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Some of us have no option to upgrade FW from Prusa Connect: https://forum.prusa3d.com/forum/input-shaper-mini/cant-flash-firmware-through-prusaconnect-on-mini/#post-686049

Posted : 25/11/2023 7:19 pm
gigiga
(@gigiga)
Active Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Is there a reason to have the steel sheet names not be editable and add additional items to that list on the minis? I have multiple sheets (3) and nozzles diameters (4) now and the 8 available sheet presets are becoming quite a tight selection to choose nozzle:sheet:material combinations to save, not to mention, I have to keep a little sticky note around for what is what. Just a memory or price reason?

Posted : 26/11/2023 12:45 pm
PetriT
(@petrit)
Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Hi!
If anyone is using OctoPi, please note, that it's not supporting bgcode.
If you still want to use OctoPi, untick one box to use the text based gcode.
https://community.octoprint.org/t/information-regarding-the-the-new-bgcode-file-format-in-prusa-slicer/55196

Posted : 27/11/2023 10:59 am
Francesc Espinet
(@francesc-espinet)
Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

I can't compile version 5.1.0, I have the mini with a noctua and I need to make a firmware adjustment. Has anyone managed to compile?

C:\Users\Gestio1\Downloads\Prusa-Firmware-Buddy-5.1.0>python utils/build.py --generate-bbf

Switching to Buddy's virtual environment.You can disable this by setting the BUDDY_NO_VIRTUALENV=1 env. variable.Traceback (most recent call last): File "C:\Users\Gestio1\Downloads\Prusa-Firmware-Buddy-5.1.0\utils\build.py", line 832, in <module> main() File "C:\Users\Gestio1\Downloads\Prusa-Firmware-Buddy-5.1.0\utils\build.py", line 623, in main bootstrap.switch_to_venv_if_nedded() File "C:\Users\Gestio1\Downloads\Prusa-Firmware-Buddy-5.1.0\utils\bootstrap.py", line 211, in switch_to_venv_if_nedded os.execv(str(venv_bin_dir / 'python'),FileNotFoundError: [Errno 2] No such file or directory

C:\Users\Gestio1\Downloads\Prusa-Firmware-Buddy-5.1.0>

Posted : 28/11/2023 8:46 am
Turro75
(@turro75)
Estimable Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

I wasn't able to build it unless I realized that I was using python3.12 while the build is working with 3.11, at least this happened to me on macos and ubuntu.

Posted : 28/11/2023 10:04 pm
repair3D
(@repair3d)
Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Mám dosku Buddy 1.0.5 - firmware 5.1.0.sa nedá aktualizovať. Všetko mám urobené podľa pokynov o  čom som si dopisoval aj s podporou, do dnešného dňa žiadne info ako to mám vyriešiť 🙁 

Posted : 30/11/2023 6:10 pm
jcjames_13009
(@jcjames_13009)
Estimable Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Hi there

Juste flash m'y MINI+ with new firmware version via USB stick from 4.4.1. No issue at all. First print came out perfectly. I'm really impressed about the speed. Need now to setup Prusa Connect and test new features.

Super thanks to the dev team

JC

Prusa MINI+ at home / Prusa MK3S+ in the Fab Lab / You can have a look at my designs here printables.com

Posted : 30/11/2023 8:01 pm
Wetdesign
(@wetdesign)
Active Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Version 5.1.0 installed. It appeared like my network configuration file was removed by the mini, and no connection on Wifi. I did spell SSID wrong a few times. 
In the end, after a long wait, PrusaMini got a connection and IP address from the router DHCP.   Second was the missing thumbnails. I expected a checkmark or similar to change from JPG/PNG  to QOI.  In the end I retyped to line in Printer Settings/General/Firmware to "16x16/QOI, 220x124/QOI", and I have the thumbnails displayed on Prusa Mini Firmware 5.1.0.

 

Posted : 01/12/2023 6:01 pm
Pandhabeer
(@pandhabeer)
Member
Can't seem to find the English firmware?

Perhaps a dumb question, but I can't seem to find the English only firmware? I went to the Prusa Github page to download the latest 5.1.0 Input Shaper firmware, but I only saw the following languages options:

MINI_english_czech_firmware_5.1.0.bbf1.9 MB2 weeks ago
MINI_english_french_firmware_5.1.0.bbf1.9 MB2 weeks ago
MINI_english_german_firmware_5.1.0.bbf1.9 MB2 weeks ago
MINI_english_italian_firmware_5.1.0.bbf1.9 MB2 weeks ago
MINI_english_polish_firmware_5.1.0.bbf1.9 MB2 weeks ago
MINI_english_spanish_firmware_5.1.0.bbf

Does this mean that every firmware option is in English?

Posted : 10/12/2023 8:43 pm
ToyArts liked
beeblebrox
(@beeblebrox)
Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!
Posted by: @pandhabeer

Does this mean that every firmware option is in English?

Had the same question, it appears so to me.


@same-old-shane It would be hugely helpful if the very first line on the 5.1.0 firmware feature list said "requires 4.4.1 firmware or later to be installed".  I found it on this post buried a couple paragraphs down after scratching my head as to why the bootloader wasn't picking up the file.

Posted : 12/12/2023 4:55 pm
Frog
 Frog
(@frog)
Eminent Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

It seems to me that the Prusa firmware development has left the open source idea more or less. Meaning that the firmware development does not consider those people that modify their Prusa-printers. First we had (or still have) the well-known problems with the thermal model protection and the thermal anomalies that didn't work for modded printers and now these problems with this new Input Shaper functionality. Of course I welcome new functionality but why not consider what impact this new functionality has on modded printers? I think that could be expected when taking the open source idea seriously.
What nobody with a modded printer would accept is that we cannot upgrade our firmware and only a minority will go for compiling their own firmware-version.
Now about th new Input Shaper: With the new firmware I get some unexplainable print problems. I read some advice about: "You should run recalibration tower and choose the best values" but AFAIK there's no precize and mature how todo-list and certainly the firmware-developers seem not to have covered the consequences for modded printers. Why not at least included a (menu-driven?) way to switch this new functionality off at wish the way we have seen this for the thermal protection.
Further -as I said before- please give us a todo-list for getting the new Input Shaper to function on modded printers!!

Posted : 17/12/2023 10:26 pm
Razor
(@razor)
Estimable Member
RE: 5.1.0 Firmware for Original Prusa MINI, is out!

Honest question, do you expect Prusa to contact you and all other modded printer owners out there before they release new firmware? How could they possibly know what mods you did? Have you reported your issue to them? If so what did they say? Did they refuse to help? And if they did refuse were you not able to reflash with an older firmware?

Mini+MK3S+XL 5 Tool

Posted : 26/12/2023 3:42 am
Share: