# How to update the firmware :::{warning} The following guide is only valid for updating between 1.X.x and 1.Y.y versions. For details about the update process between 0.16.23 to 1.0.x please see the [migration guide](../Firmware/ReleaseNotes/FW_1.0.x/FW_1.0.x_migration_guide.md). ::: ## Download the firmware The firmware image is available on the [ifm.com](https://www.ifm.com/) website. Navigate to the site and follow the steps below: - Create an account (if you do not already have one) and log in. - Use the search bar to find the article number (OVP80x or OVP81x). This is also valid if you have pre-release sample units, for example M04239. - Navigate to the article page an click on the "Downloads" tab. - Select the firmware from the list. It will start downloading the file. ## Starting firmware is version < 1.0.0 When updating to a firmware version 1.0.0 or above, starting with a firmware version below 1.0.0, please refer to [the migration guide](../Firmware/ReleaseNotes/FW_1.0.x/FW_1.0.x_migration_guide.md). ## Starting firmware is version >= 1.0.0 ### (Optional) Save the current configuration Depending on the starting and target firmware versions, the configuration might not be fully preserved after an update. To make sure you do not lose your configuration, we recommend saving it locally before performing the update. You can for example do so using the command line interface: ```bash ifm3d dump > config_save.json ``` ### With the ifmVisionAssistant Download the ifmVisionAssistant from https://www.ifm.com/us/en/product/OVP800?tab=documents. :::{note} Updating the firmware from 0.16.xx to 1.0.xx is currently not possible with the ifmVisionAssistant. ::: In the instructions below, we expect that the user extracted the downloaded ZIP containing the firmware file. - Open the Vision Assistant and connect to the OVP8xx, - Navigate to the `VPU Settings` window and click `Update` under the `Firmware Update` section. The version beside the `Update` button refers to the current version running on VPU. - Select the file and the update process will start. - Once the update is complete, the device will reboot. ### With the ifm3d API or the web interface #### Reboot to recovery When the starting firmware is version 1.0.0 and above, a reboot to recovery state is necessary to perform an update. :::::{tabs} ::::{group-tab} CLI ```bash $ ifm3d reboot --recovery ``` :::: ::::{group-tab} c++ ```cpp #include #include ... auto o3r = std::make_shared(); auto sw = std::make_shared(o3r); sw->RebootToRecovery(); if (sw->WaitForRecovery()) { std::cout << "System in recovery mode" << std::endl; } ... ``` :::: ::::{group-tab} Python ```python from ifm3dpy.swupdater import SWUpdater from ifm3dpy.device import O3R o3r = O3R() sw = SWUpdater(o3r) sw.reboot_to_recovery() if sw.wait_for_recovery(): print("System in recovery mode) ``` :::: ::::: :::{note} If you happen to be stuck in recovery mode, the device will not be "ping-able." To reboot to productive, you have two options: - You can update the system again. If the update is successful, the system will reboot to productive, or, - You can use the ifm3d API to reboot to productive without updating. With the command line interface, you can use `ifm3d swupdate -r`. In Python you can use the [`reboot_to_productive` function](https://api.ifm3d.com/stable/_autosummary/ifm3dpy.swupdater.SWUpdater.html#ifm3dpy.swupdater.SWUpdater.reboot_to_productive) and in C++ the [`RebootToProductive` function](https://api.ifm3d.com/stable/cpp_api/classifm3d_1_1SWUpdater.html#a5ed7d927b9ff35a6808394345bdced8e). ::: #### With the web interface Once the device is in recovery mode (see section above), you can open the web interface: 1. Open [http://192.168.0.69:8080/](http://192.168.0.69:8080/) in web browser. The `SWUpdate` web interface is shown. 2. Drag and drop the `*.swu` firmware file into the `software update`-window. The upload procedure starts. The system will automatically reboot in productive mode. The web interface will not be available anymore (it is only available in recovery mode). #### With ifm3d Once the device is in recovery mode, you can use ifm3d to update the firmware. In the instructions below, replace `` with the path to the firmware file you downloaded from [ifm.com](https://www.ifm.com/). The code below is continued from the "reboot to recovery" section. :::::{tabs} ::::{group-tab} CLI ```bash $ ifm3d swupdate --file= ``` :::: ::::{group-tab} c++ ```cpp if (sw->FlashFirmware("")){ sw->WaitForProductive(); std::cout << "System ready!" << std::endl; } ``` :::: ::::{group-tab} Python ```python if sw.flash_firmware(''): sw.wait_for_productive() print("System ready!") ``` :::: ::::: :::{note} The code snippets above do not show how to handle exceptions when they occur in the update process. Please refer to the API documentation for details on the potential exceptions thrown by each function. ::: Double check the firmware version after the update: :::::{tabs} ::::{group-tab} CLI ```bash $ ifm3d dump | jq .device.swVersion.firmware ``` :::: ::::{group-tab} C++ ```c++ ifm3d::json config = dev->Get({"/device/swVersion/firmware"}); ``` :::: ::::{group-tab} Python ```python o3r.get(["/device/swVersion/firmware"]) ``` :::: ::::: #### The full example script We provide a full Python script to help you update the firmware using the API. You can find this script [in the `ifm3d-examples` repository](https://github.com/ifm/ifm3d-examples/blob/main/ovp8xx/python/ovp8xxexamples/core/fw_update_utils.py).