mirror of
https://github.com/intrepidcs/icsscand.git
synced 2026-08-05 01:28:26 +02:00
3.1.0
Update libicsneo & copyright
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
v3.1.0
|
||||||
|
Update libicsneo
|
||||||
|
Update copyright
|
||||||
|
|
||||||
|
v3.0.0
|
||||||
|
Added Functionality for Ethernet
|
||||||
|
|
||||||
v2.1.0
|
v2.1.0
|
||||||
Update copyright date
|
Update copyright date
|
||||||
Update to libicsneo v0.3.0
|
Update to libicsneo v0.3.0
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2016-2022 Intrepid Control Systems, Inc.
|
Copyright (c) 2016-2023 Intrepid Control Systems, Inc.
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Version 2.1.0
|
Version 3.1.0
|
||||||
|
|
||||||
This is the usermode daemon for the Intrepid Control Systems SocketCAN support. This daemon requires that ```intrepid.ko``` is loaded on your system.
|
This is the usermode daemon for the Intrepid Control Systems SocketCAN support. This daemon requires that ```intrepid.ko``` is loaded on your system.
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -199,7 +199,7 @@ std::string sanitizeInterfaceName(std::string str) {
|
|||||||
|
|
||||||
void header() {
|
void header() {
|
||||||
std::cout << "The libicsneo SocketCAN Usermode Daemon\n";
|
std::cout << "The libicsneo SocketCAN Usermode Daemon\n";
|
||||||
std::cout << "Copyright Intrepid Control Systems, Inc. 2019\n\n";
|
std::cout << "Copyright Intrepid Control Systems, Inc. 2023\n\n";
|
||||||
std::cout << "Daemon v";
|
std::cout << "Daemon v";
|
||||||
std::cout << (int)ICSNEO_SOCKETCAN_BUILD_MAJOR << '.' << (int)ICSNEO_SOCKETCAN_BUILD_MINOR << '.' << (int)ICSNEO_SOCKETCAN_BUILD_PATCH;
|
std::cout << (int)ICSNEO_SOCKETCAN_BUILD_MAJOR << '.' << (int)ICSNEO_SOCKETCAN_BUILD_MINOR << '.' << (int)ICSNEO_SOCKETCAN_BUILD_PATCH;
|
||||||
if(ICSNEO_SOCKETCAN_BUILD_METADATA[0] != '\0')
|
if(ICSNEO_SOCKETCAN_BUILD_METADATA[0] != '\0')
|
||||||
@@ -216,7 +216,7 @@ void header() {
|
|||||||
|
|
||||||
void usage(std::string executableName) {
|
void usage(std::string executableName) {
|
||||||
std::cerr << "The libicsneo SocketCAN Usermode Daemon\n";
|
std::cerr << "The libicsneo SocketCAN Usermode Daemon\n";
|
||||||
std::cerr << "Copyright 2019-2022 Intrepid Control Systems, Inc.\n\n";
|
std::cerr << "Copyright 2019-2023 Intrepid Control Systems, Inc.\n\n";
|
||||||
std::cerr << "Usage: " << executableName << " [option]\n\n";
|
std::cerr << "Usage: " << executableName << " [option]\n\n";
|
||||||
std::cerr << "Options:\n";
|
std::cerr << "Options:\n";
|
||||||
std::cerr << "\t-d, --daemon\t\tRun as a daemon in the background\n";
|
std::cerr << "\t-d, --daemon\t\tRun as a daemon in the background\n";
|
||||||
@@ -305,7 +305,7 @@ void searchForDevices() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Create rx listener
|
// Create rx listener
|
||||||
newDevice.device->addMessageCallback(icsneo::MessageCallback([serial](std::shared_ptr<icsneo::Message> message) {
|
newDevice.device->addMessageCallback(std::make_shared<icsneo::MessageCallback>([serial](std::shared_ptr<icsneo::Message> message) {
|
||||||
const auto frame = std::static_pointer_cast<icsneo::Frame>(message);
|
const auto frame = std::static_pointer_cast<icsneo::Frame>(message);
|
||||||
const auto messageType = frame->network.getType();
|
const auto messageType = frame->network.getType();
|
||||||
const OpenDevice* openDevice = nullptr;
|
const OpenDevice* openDevice = nullptr;
|
||||||
|
|||||||
Vendored
+1
-1
Submodule third-party/libicsneo updated: 0ff12300f3...b6d9ef4c7e
Reference in New Issue
Block a user