From c466d75dae3d01897f25e7aff14695524d161dda Mon Sep 17 00:00:00 2001 From: Thomas Stoddard Date: Wed, 13 May 2026 19:45:28 +0000 Subject: [PATCH] All: neoVI Explorer -> ICS Device Manager --- api/icsneocpp/event.cpp | 4 ++-- docs/icsneopy/flexray_getting_started.rst | 2 +- examples/cpp/apperror/src/AppErrorExample.cpp | 2 +- examples/cpp/simple/src/SimpleExample.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/icsneocpp/event.cpp b/api/icsneocpp/event.cpp index 6b641d1c..befdd312 100644 --- a/api/icsneocpp/event.cpp +++ b/api/icsneocpp/event.cpp @@ -63,8 +63,8 @@ static constexpr const char* NO_SERIAL_NUMBER_12V = "Communication could not be static constexpr const char* NO_SERIAL_NUMBER = "Communication could not be established with the device. Perhaps it is not powered or requires a firmware update using Vehicle Spy."; static constexpr const char* INCORRECT_SERIAL_NUMBER = "The device did not return the expected serial number!"; static constexpr const char* SETTINGS_READ = "The device settings could not be read."; -static constexpr const char* SETTINGS_VERSION = "The settings version is incorrect, please update your firmware with neoVI Explorer."; -static constexpr const char* SETTINGS_LENGTH = "The settings length is incorrect, please update your firmware with neoVI Explorer."; +static constexpr const char* SETTINGS_VERSION = "The settings version is incorrect, please update your firmware with ICS Device Manager."; +static constexpr const char* SETTINGS_LENGTH = "The settings length is incorrect, please update your firmware with ICS Device Manager."; static constexpr const char* SETTINGS_CHECKSUM = "The settings checksum is incorrect, attempting to set defaults may remedy this issue."; static constexpr const char* SETTINGS_NOT_AVAILABLE = "Settings are not available for this device."; static constexpr const char* SETTINGS_READONLY = "Settings are read-only for this device."; diff --git a/docs/icsneopy/flexray_getting_started.rst b/docs/icsneopy/flexray_getting_started.rst index 6ebc4493..9e8bfd23 100644 --- a/docs/icsneopy/flexray_getting_started.rst +++ b/docs/icsneopy/flexray_getting_started.rst @@ -127,7 +127,7 @@ FlexRay Coldstart Configuration To use the Coldstart example, ensure the following: -Set the Flexray network in neoVI Explorer to Coldstart. +Set the Flexray network in ICS Device Manager to Coldstart. No other nodes should be present on the network during testing. diff --git a/examples/cpp/apperror/src/AppErrorExample.cpp b/examples/cpp/apperror/src/AppErrorExample.cpp index f1e089d3..1e690584 100644 --- a/examples/cpp/apperror/src/AppErrorExample.cpp +++ b/examples/cpp/apperror/src/AppErrorExample.cpp @@ -9,7 +9,7 @@ /* * App errors are responses from the device indicating internal runtime errors * NOTE: To trigger the app error in this example, disable the DW CAN 01 network on the device - * (e.g. with neoVI Explorer) + * (e.g. with ICS Device Manager) */ int main() { std::cout << "Running libicsneo " << icsneo::GetVersion() << std::endl; diff --git a/examples/cpp/simple/src/SimpleExample.cpp b/examples/cpp/simple/src/SimpleExample.cpp index e74893a8..006be613 100644 --- a/examples/cpp/simple/src/SimpleExample.cpp +++ b/examples/cpp/simple/src/SimpleExample.cpp @@ -339,7 +339,7 @@ int main() { if(val.has_value()) std::cout << " - OK (" << val.value() << "V)" << std::endl; else - std::cout << " - FAIL, it may need to be enabled in neoVI Explorer (" << icsneo::GetLastError() << ")" << std::endl; + std::cout << " - FAIL, it may need to be enabled in ICS Device Manager (" << icsneo::GetLastError() << ")" << std::endl; } }