WB Modbus Devices Firmware Update/en: различия между версиями

Материал из Wiren Board
(Новая страница: «===Update at any connection speed===»)
Метки: правка с мобильного устройства правка из мобильной версии
(Новая страница: «'''Otherwise, the update can only be performed with standard 9600N2 connection settings.'''»)
Строка 168: Строка 168:
Below is an example with the following input data:
Below is an example with the following input data:


<div lang="ru" dir="ltr" class="mw-content-ltr">
*Gateway WB-MGE (WB-MIO-E), configured for Modbus over TCP and having IP address 192.168.0.7, port 23.
*Шлюз WB-MGE (WB-MIO-E), настроенный на Modbus over TCP и имеющий IP-адрес 192.168.0.7, порт 23.
*Modbus device Wiren Board with address 14.
*Modbus-устройство Wiren Board с адресом 14.
*Connection speed is 115200 kbit/s.
*Соединение на скорости 115200 кбит/с.
</div>


<div lang="ru" dir="ltr" class="mw-content-ltr">
<div lang="ru" dir="ltr" class="mw-content-ltr">

Версия 07:55, 27 августа 2024

Другие языки:

Внимание: Отображаемое название «Updating Wiren Board Modbus Device Firmware» переопределяет ранее заданное отображаемое название «Modbus Devices Firmware Update».

General Information

Updating Device Firmware (24:08)

Wiren Board modbus devices have a bootloader, which allows updating firmware via RS-485/Modbus RTU. In bootloader mode, the main functions of the device are disabled, and the communication parameters in bootloader mode are fixed and do not depend on the values in the device memory: 9600 8N2.

The firmware itself is released in the format of releases, which are linked to controller software releases, but have a different cycle:

  • testing — firmware that has passed internal testing lands here, available to users of the controller's testing release;
  • stable — three weeks after being published in testing and with no error reports, the firmware is considered stable. At this point, it becomes available to users of the stable release of the controller. If there were major changes in the firmware that affected the device's core functions, the firmware may be slightly delayed in testing.

On the page of each device there is a link to the list of firmware changes, where firmware in testing is marked with the "testing" marker. Firmware without a mark is considered stable.

Distributing firmware updates by releases helps prevent a situation where a new firmware version, without undergoing thorough testing, ends up in a very critical installation. If the new firmware requires new features in the controller's software, either these features will be included in the stable software release along with the firmware, or the firmware update will be delayed in testing until the required features appear in the software.

To update devices connected via a WB-MGE gateway or a similar device, use the socat redirection, instructions.

Automatic firmware update

Example of wb-fw-mcu-updater operation

When updating the firmware, IR commands stored in WB-MSW and WB-MIR devices are deleted. We recommend saving command banks before updating using the script. Automatic firmware update is performed using the utility wb-mcu-fw-updater preinstalled on Wiren Board controllers, allowing you to install the latest version of the software on all connected devices at once or separately on each one. The device model and new firmware will be automatically identified.

The utility only works on our controller and requires internet access. If you do not have internet or our controller, refer to the section Manual Update.

Updating firmware on devices connected to WB-MGE and WM-MIO-E gateways is also performed manually with displaying the network port to local.

Updating all devices on the bus

You can update all devices configured in the Serial Devices Configuration section of the web interface

  1. Connect the devices via the RS-485 bus to the controller.
  2. Configure the connected devices in the web interface.
  3. Open the controller's console via SSH.
  4. Update all configured devices with the following command:
    wb-mcu-fw-updater update-all
    

Updating a Single Device

To update only one device:

  1. Connect the device via RS-485 to the controller.
  2. Determine the Modbus address of the device you want to update.
  3. Open the controller console via SSH.
  4. Run the utility wb-mcu-fw-updater with the following parameters: the update-fw key, as well as the port and Modbus address.

For example, let's update the firmware of a device with a modbus address of 70 connected to port /dev/ttyRS485-1:

wb-mcu-fw-updater update-fw /dev/ttyRS485-1 -a70

For the full list of parameters and examples of usage, refer to the utility page.

Manual Update

Features

This method is used if:

In all other cases, use the automatic update.

Manual update can be done with the utility wb-mcu-fw-flasher, which needs to be installed beforehand. The installation method varies and depends on the operating system being used.

Device preparation

Devices can be flashed in the following ways:

  • by the device's Modbus address.
  • by the broadcast address, which is 0.

To flash multiple devices on the bus, you need to sequentially switch them to the bootloader mode and flash them.

Firmware upload to the device

To upload the firmware, follow these steps:

  1. Connect the device via RS-485 bus to the controller or other equipment where the firmware utility is installed.
  2. Если вы выполняете команды на контроллере:
  3. Download the firmware file for your device from the repository following the instructions.
  4. Upload the firmware file to the controller or other device.
  5. Go to the folder with the firmware file and execute the command:
    • on the controller or a Linux computer:
    wb-mcu-fw-flasher -j -d /dev/ttyRS485-1 -a25 -f ./firmware.wbfw
    
    • on a Windows computer:
    wb-mcu-fw-flasher_1.0.3.exe -j -d COM1 -a25 -f firmware.wbfw
    
  6. If you executed the command from the controller, start the wb-mqtt-serial driver.

In the above command, using the -j flag, we switched the device connected to the port /dev/ttyRS485-1 (COM1) with address 25 to bootloader mode and then flashed it.

A successful firmware update process looks like this:

~# wb-mcu-fw-flasher -j -d /dev/ttyRS485-1 -a 25 -f mr6c__1.15.5_master_971fe50.wbfw  
   /dev/ttyRS485-1 opened successfully.
   Send jump to bootloader command and wait 2 seconds...
   Ok, device will jump to bootloader.
   mr6c__1.15.5_master_971fe50.wbfw opened successfully, size 14720 bytes

   <div lang="ru" dir="ltr" class="mw-content-ltr">
Sending info block... OK
</div>

   <div lang="ru" dir="ltr" class="mw-content-ltr">
Sending data block 108 of 108... OK.
   All done!

If the device signature and firmware file do not match, you will receive an error message:

Sending info block...
   Error while sending info block: Slave device or server failure 
   Data format is invalid or firmware signature doesn't match the device

Restoring the device firmware

If an error occurred during the update, the device will enter the bootloader mode and you can restore its firmware.

Automatically

To automatically restore the firmware of one or multiple devices, you can use the utility wb-mcu-fw-updater in the modes recover and recover-all.

To recover the device with address 10 and connected to port /dev/ttyRS485-1, execute the command:

wb-mcu-fw-updater recover /dev/ttyRS485-1 -a 10

For more information on the recover and recover-all modes, read the documentation in the documentation.

Manually

If you cannot use wb-mcu-fw-updater, you can restore the firmware of devices using the service utility wb-mcu-fw-flasher. This method can also be used by Windows computer users.

To do this, you will need the utility itself and the firmware file:

  1. Connect the device via the RS-485 bus to the controller or other equipment where the firmware utility is installed.
  2. Если вы выполняете команды на контроллере:
  3. Download the firmware file for your device from the repository.
  4. Upload the firmware file to the controller or other device with the firmware utility installed.
  5. Go to the folder with firmware and execute the command:
    • on a Linux-based controller or computer:
    wb-mcu-fw-flasher -d /dev/ttyRS485-1 -a 25 -f ./firmware.wbfw
    
    • on a Windows-based computer:
    wb-mcu-fw-flasher_1.0.3.exe -d COM1 -a 25 -f firmware.wbfw
    

Here we flashed the device in bootloader mode with Modbus address 25 connected to port /dev/ttyRS485-1 (COM1) using the file firmware.wbfw.

Updating firmware of devices connected to WB-MGE and WB-MIO-E gateways

Gateway settings for firmware update

To update the firmware of a Wiren Board device connected to the WB-MGE and WB-MIO-E gateways via RS-485, it can only be done manually using the wb-mcu-fw-flasher utility. However, first, you need to convert the network port to a local one using the socat utility.

The gateway must be set to TCP Server/None mode (for WB-MGE v2, WB-MIO-E v2) or TCP Server mode (for WB-MGE v1, WB-MIO-E v1).

Update at any connection speed

Connection settings can be any, !if! only:

  • Version of wb-mcu-fw-flasher is not less than 1.3.0 (available in testing),
  • The current firmware version of the device supports 131 registers (see Change logs on device pages),
  • The current bootloader version is not lower than 1.3.0.

Otherwise, the update can only be performed with standard 9600N2 connection settings.

Below is an example with the following input data:

  • Gateway WB-MGE (WB-MIO-E), configured for Modbus over TCP and having IP address 192.168.0.7, port 23.
  • Modbus device Wiren Board with address 14.
  • Connection speed is 115200 kbit/s.

Внимание! В вашем случае настройки могут быть другими.

  1. Приготовьте файл прошивки и установите утилиту socat, если ее нет:
    apt install socat
    
  2. Дважды подключитесь к контроллеру по SSH, у вас должно быть открыто два окна: первое для создания тоннеля socat, второе для отправки команд устройству.
  3. Остановите wb-mqtt-serial:
    systemctl stop wb-mqtt-serial
    
  4. В первом окне запустите перенаправление утилитой socat с текущими настройками соединения:
    socat -d -d -d -x PTY,raw,b115200,parenb=0,cstopb=2,cs8,link=/dev/ttyRS485-5 tcp:192.168.0.7:23
    
  5. Во втором окне запустите обновление прошивки устройства утилитой wb-mcu-fw-flasher, используя параметр -J. Укажите файл прошивки, который приготовили в начале:
    wb-mcu-fw-flasher -J -d /dev/ttyRS485-5 -a14 -f ./firmware.wbfw
    
  6. Запустите wb-mqtt-serial
    systemctl start wb-mqtt-serial
    

Обновление со стандартными настройками соединения

Инструкция используется для устройств в которых текущая версия загрузчика ниже 1.3.0 и/или текущая прошивка не поддерживает 131 регистр.

В этом случае обновление можно выполнить только на скорости 9600N2, указав параметр -j для утилиты wb-mcu-fw-flasher. Если используются другие настройки соединения сначала нужно изменить их на стандартные.

Рекомендуем также обновить загрузчик если его версия ниже 1.3.0. Это позволит в дальнейшем обновлять прошивку на любой скорости соединения.

Рассмотрим синтетический пример обновления прошивки устройств, в котором используются нестандартные настройки соединения:

  • Шлюз WB-MGE (WB-MIO-E), настроенный на Modbus over TCP и имеющий IP-адрес 192.168.0.7, порт 23.
  • К шлюзу подключено устройство WB-MDM3 с адресом 58.
  • В настройках устройства и шлюза выставлена скорость 115200 кбит/с.

Внимание! В инструкции рассмотрен пример, в котором устройства работают на скорости 115200 8N2. В вашем случае настройки соединения могут быть другими. Чтобы обновить прошивку:

  1. Дважды подключитесь к контроллеру по SSH, у вас должно быть открыто два окна: первое для создания тоннеля socat, второе для отправки команд устройству.
  2. Остановите wb-mqtt-serial:
    systemctl stop wb-mqtt-serial
    
  3. В первом окне запустите перенаправление:
    socat -d -d -d -x PTY,raw,b115200,parenb=0,cstopb=2,cs8,link=/dev/ttyRS485-5 tcp:192.168.0.7:23
    
    если у вас стабильный релиз до wb-2207 включительно, вместо параметра b115200, используйте ispeed=115200,ospeed=115200.
  4. Во втором окне измените скорость порта устройства на 9600 кбит/с:
    modbus_client --debug -mrtu -b115200 -pnone -s2 /dev/ttyRS485-5 -a58 -t0x06 -r110 96
    
  5. В первом окне разорвите соединение socat клавишами Ctrl+C.
  6. В настройках шлюза установите скорость порта 9600 кбит/с.
  7. В первом окне снова запустите перенаправление socat с новыми параметрами соединения:
    socat -d -d -d -x PTY,raw,b9600,parenb=0,cstopb=2,cs8,link=/dev/ttyRS485-5 tcp:192.168.0.7:23
    
    если у вас стабильный релиз до wb-2207 включительно, вместо параметра b9600, используйте ispeed=9600,ospeed=9600.
  8. Во втором окне запустите обновление прошивки устройства, например, утилитой wb-mcu-fw-flasher (полная инструкция):
    wb-mcu-fw-flasher -j -d /dev/ttyRS485-5 -a25 -f ./firmware.wbfw
    
  9. После окончания прошивки верните в устройстве старую скорость 115200 кбит/с:
    modbus_client --debug -mrtu -b9600 -pnone -s2 /dev/ttyRS485-5 -a58 -t0x06 -r110 1152
    
  10. В первом окне разорвите соединение socat клавишами Ctrl+C.
  11. В настройках шлюза измените скорость порта с 9600 кбит/с на 115200 кбит/с.
  12. Подключите шлюз к контроллеру по Ethernet.
  13. Запустите wb-mqtt-serial
    systemctl start wb-mqtt-serial
    

Если вам нужно прошить несколько устройств, то вы можете сперва изменить им скорость, перенастроить шлюз, а потом так же поочереди их прошить, вернуть им прежнюю скорость и снова перенастроить шлюз.

Настройка шлюза для обновления прошивки

Самый простой способ изменить настройки шлюза — подключиться к его встроенному веб-интерфейсу. Для этого нужно:

  1. подключить шлюз к компьютеру UTP кабелем напрямую или через роутер,
  2. присвоить компьютеру статический IP-адрес в сети шлюза, например, 192.168.0.201,
  3. открыть браузер и ввести IP-адрес шлюза, по умолчанию 192.168.0.7.