Skip to content

Releases: PHINIA-FS-Tools/Flasher

v6.2.2

15 Jan 13:19
33c84ed
Compare
Choose a tag to compare
  • [Minor] Splash screen added to startup. Also, startup performance is improved.
  • [Minor] Baudrate unit is written to trace.
  • [Minor] Check for /BAUDRATE console argument in case user write bd instead of kbd. (user guide is updated)
  • Auto activation support for hw-locked licenses.

v6.2.1

10 Oct 09:58
33c84ed
Compare
Choose a tag to compare
  • CanHwConf::BitTimingConf field is added to .NET interface, when developing plugin DLL.
    You may use it to provide bit timing configurations instead of baud rate.
    // CAN example:
    docConf.HwConf.BitTimingConf = "Tseg1:13;Tseg2:2;Sjw:1;Brp:1;Sam:1";
    // CAN-FD example:
    docConf.HwConf.BitTimingConf = "ClockFreqMhz:40;ArbTseg1:68;ArbTseg2:11;ArbSjw:11;ArbBrp:1;DataTseg1:4;DataTseg2:3;DataSjw:3;DataBrp:1";
  • [Minor] Tool has a safe mode to skip possible startup problems.
    dds_flasher.exe /safe
  • [Minor] Support to check for updates, and see the release notes (CLF-348).
  • [Bug Fix] Several plugin DLLs causing tool to crash during startup. (e.g. UDS_TOOL_SYMC_E6d_v2.dll, UDS_TOOLS_SYMC_E6D_AIO.dll)
    Issue is active in v6.1.1 and v6.2.

v6.2

03 Sep 13:32
33c84ed
Compare
Choose a tag to compare
  • High-DPI monitor support is added. Several icons are changed.

  • Tool starts to import S1 data lines in a ULP (Motorola SRec) file. After some investigation, we noticed that tool was not importing S1 lines because of old PSA/RSA projects. This modification will not affect flash operations.

  • New J1939 settings: J1939_RX_SA and J1939_RX_PRI. That will provide filtering received J1939 messages better.

  • Kvaser device support is improved. Kvaser CAN-FD device support is added. #kvaser

  • [Minor] Shortcut support for comment/uncomment buttons (Ctrl+Shift+C and Ctrl+Shift+U).

  • [Bug Fix] "Generate Flash Script" works incorrect. The start-address bytes are reversed. Issue is active starting from v6_1.

  • [Bug Fix] Floating license is not released when tool is used in console mode.

v6.1.1

31 Jul 12:49
33c84ed
Compare
Choose a tag to compare

Release Date: 2024-04-26

  • [Bug Fix] PEAK-system latest pass-thru API (v3.1.1) causing tool to crash.

v6.1

31 Jul 12:48
33c84ed
Compare
Choose a tag to compare

Release Date: 2024-03-28

  • Wait function is added. #DotNetInterface
    Wait(100); // wait 100 msc
  • OpenComm function's second argument is optional. #DotNetInterface
    OpenComm("DOC"); // second argument not used
  • REQ_RESP_MAX_EX keyword is added to both Flasher script and .NET API in order to change P2* configuration. #Script #DotNetInterface
    CHANGE REQ_RESP_MAX_EX 5000
  • Minor fix for FLOW_CONTROL_TIMEOUT and MAX_INTER_PENDING_TIME configs in .NET interface. #DotNetInterface
  • [Breaking Change] When tool is executed from command prompt, log file name is relative to current directory. It was relative to Flasher-log directory. This change does not affect you if you provide log-name as absolute path. #ConsoleSupport
  • Plugin DLL sample is updated.
  • Minor visual improvements.

v6.0

31 Jul 12:33
33c84ed
Compare
Choose a tag to compare

Release Date: 2023-10-18

Tool underlying framework is changed to dotNET7. Runtime will be installed with the setup, if it is not installed before.

  • Tool uses "Segue UI, 9pt" font, which is more aligned to the Windows user experience (UX) guidelines.
  • [Minor] Several icons are updated.
  • [Minor] BorgWarner to Phinia adaptations.
  • [Minor] Developer level log management is simplified. It is moved to Help menu.
  • [Bug Fix] AUTOSAR FlexRay TP (DARF) protocol fails to transmit multi-frame messages. #FlexRay
  • [Bug Fix] Tool does not run from command line if /PROTOCOL is not specified. #command_line
  • [Bug Fix] Data transmission is not working when PEAK LIN device is used. #LIN
  • [Bug Fix] TX and RX notification is mixed when Peak LIN is used. #LIN
  • [Bug Fix] Reading long response message fails rarely when UDS on CAN is used (for example, during UPLOAD). #UDS #CAN

v5.11.1

31 Jul 12:28
33c84ed
Compare
Choose a tag to compare

Release Date: 2023-03-02

  • Peak-system LIN device support is added (beta stage) (CLF-293).
  • Minor improvements for displaying plugin inventory.
  • [Bug Fix] Receiving all zero bytes UDS message causes exception (CMP-62).
  • [Bug Fix] Unable to activate tool license because it considers PC is virtual machine. (Rare issue which may happen in customer PCs)

v5.11

31 Jul 12:27
33c84ed
Compare
Choose a tag to compare

Release Date: 2022-09-30

  • SAE J1939/22 support is added for using J1939 on CAN-FD bus (CMP-47). #J1939
    J1939/22 will be used if CAN-FD is activated for the device. See user guide for samples and restrictions.
  • FlexRay improvements:
    • Diagnostic on AUTOSAR FlexRay TP (DARF) communication mode is added. #FlexRay
      It is alternative transport layer implementation to ISO 10681-2.
    • Tool is able to use Vector Advanced FlexRay Driver Library license (if available) to cold start the FlexRay bus (CMP-59). #FlexRay
      Otherwise, you need another startup-sync node on the FlexRay bus. If you have any other FlexRay device alternative, please let us know.
    • FlexRay cycle toolbar behavior is changed. Starting a FlexRay script/plugin does not initiate the toolbar. #FlexRay
  • CAN/CAN-FD baud rate improvements
    • Support to type a CAN/CAN-FD baud rate value instead of selecting from a list.
    • CAN_BIT_TM and CAN_FD_BIT_TM parameter support for setting bit-timing configuration of CAN/CAN-FD. #Script #DotNetInterface
      Example: CHANGE CAN_BIT_TM "Tseg1:13;Tseg2:2;Sjw:1;Brp:1;Sam:1"
    • BR script command accepts baud rates like "500K" or "5M". #Script
  • CAN_FD_BRS parameter support for setting BRS bit in CAN-FD frame. #DotNetInterface
  • [Minor] Support to open the plugin folder, and update the plugin list (CMP-58).
  • [Bug Fix] CHANGE MAX_INTER_PENDING_TIME and CHANGE TP_TIMEOUT script commands do not work correctly. #Script