Skip to content

Commit 8be723e

Browse files
committed
mod: licence fix
1 parent 0d20d18 commit 8be723e

31 files changed

+663
-24
lines changed

LICENSE

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

examples/decoder_tests/DummyTransport.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#ifndef DUMMY_TRANSPORT_H
213
#define DUMMY_TRANSPORT_H
314
#include "transport.h"

examples/decoder_tests/decoder_tester.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#pragma once
213
#ifndef RPCLITE_DECODER_TESTER_H
314
#define RPCLITE_DECODER_TESTER_H

examples/decoder_tests/decoder_tests.ino

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#include <Arduino_RPClite.h>
213
#include "DummyTransport.h"
314
#include "decoder_tester.h"

examples/dispatcher_example/dispatcher_example.ino

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#include <Arduino_RPClite.h>
213

314
int add(int x, int y) {

examples/rpc_lite_client/rpc_lite_client.ino

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#include <Arduino_RPClite.h>
213

314
SerialTransport transport(Serial1);

examples/rpc_lite_server/rpc_lite_server.ino

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#include <Arduino_RPClite.h>
213

314
SerialTransport transport(Serial1);

examples/wrapper_example/wrapper_example.ino

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*
2+
This file is part of the Arduino_RPClite library.
3+
4+
Copyright (c) 2025 Arduino SA
5+
6+
This Source Code Form is subject to the terms of the Mozilla Public
7+
License, v. 2.0. If a copy of the MPL was not distributed with this
8+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
9+
10+
*/
11+
112
#include <Arduino_RPClite.h>
213

314
int add(int x, int y) {

extras/examples/serial_client_example.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# This file is part of the Arduino_RPClite library.
2+
#
3+
# Copyright (c) 2025 Arduino SA
4+
#
5+
# This Source Code Form is subject to the terms of the Mozilla Public
6+
# License, v. 2.0. If a copy of the MPL was not distributed with this
7+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8+
19
from serial_client import SerialClient
210

311
PORT = '/dev/ttySTM0'

extras/examples/serial_server_example.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# This file is part of the Arduino_RPClite library.
2+
#
3+
# Copyright (c) 2025 Arduino SA
4+
#
5+
# This Source Code Form is subject to the terms of the Mozilla Public
6+
# License, v. 2.0. If a copy of the MPL was not distributed with this
7+
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
8+
19
import random
210
from serial_server import SerialServer
311

0 commit comments

Comments
 (0)