Skip to content

Commit abfd2dc

Browse files
change license
1 parent 3c3a1d7 commit abfd2dc

13 files changed

+1971
-637
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.13.4 FATAL_ERROR)
44
# ======================================================================================================================
55

66
# project
7-
project(Modbus_TCP_client_shm LANGUAGES CXX VERSION 1.5.1)
7+
project(Modbus_TCP_client_shm LANGUAGES CXX VERSION 1.5.2)
88

99
# settings
1010
set(Target "modbus-tcp-client-shm") # Executable name (without file extension!)

LICENSE

Lines changed: 674 additions & 21 deletions
Large diffs are not rendered by default.

src/Modbus_TCP_Client_poll.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55

66
#include "Modbus_TCP_Client_poll.hpp"

src/Modbus_TCP_Client_poll.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55
#pragma once
66

src/Print_Time.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55

66
#include "Print_Time.hpp"

src/Print_Time.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55

66
#pragma once

src/license.cpp

Lines changed: 1286 additions & 605 deletions
Large diffs are not rendered by default.

src/license.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55

66
#pragma once

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2021-2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55

66
#include <atomic>

src/modbus_shm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Copyright (C) 2021-2022 Nikolas Koesling <nikolas@koesling.info>.
3-
* This program is free software. You can redistribute it and/or modify it under the terms of the MIT License.
3+
* This program is free software. You can redistribute it and/or modify it under the terms of the GPLv3 License.
44
*/
55

66
#include "modbus_shm.hpp"

0 commit comments

Comments
 (0)