Skip to content

Commit 0530795

Browse files
committed
Renamed lib to Arduino_RPClite
WARNING: Library name RPClite is missing the "Arduino_" prefix. The names of all new official libraries must have this prefix. See: https://arduino.github.io/arduino-cli/latest/library-specification/#libraryproperties-file-format (Rule LP013)
1 parent fd75392 commit 0530795

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

examples/rpc_lite_client/rpc_lite_client.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <RPClite.h>
1+
#include <Arduino_RPClite.h>
22

33
SerialTransport transport(&Serial2);
44
RPCClient client(transport);

examples/rpc_lite_dummy/rpc_lite_dummy.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <RPClite.h>
1+
#include <Arduino_RPClite.h>
22

33
DummyTransport transport;
44
RPCServer server(transport);

examples/rpc_lite_server/rpc_lite_server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <RPClite.h>
1+
#include <Arduino_RPClite.h>
22
#include <HardwareSerial.h>
33

44
HardwareSerial* uart = new HardwareSerial(0);

examples/wrapper_example/wrapper_example.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <RPClite.h>
1+
#include <Arduino_RPClite.h>
22

33
int add(int x, int y) {
44
return x + y;

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name=RPClite
1+
name=Arduino_RPClite
22
version=0.0.1
33
author=Lucio Rossi (eigen-value)
44
maintainer=Lucio Rossi (eigen-value)
55
sentence=A MessagePack RPC library for Arduino
66
paragraph=allows to create a client/server architecture using MessagePack as the serialization format. It is designed to be lightweight and easy to use, making it suitable for embedded systems and IoT applications.
77
category=Communication
8-
url=https://github.com/bcmi-labs/RPClite
8+
url=https://github.com/bcmi-labs/Arduino_RPClite
99
architectures=*
1010
depends=ArxContainer (>=0.6.0), ArxTypeTraits, DebugLog (>=0.8.1)

src/RPClite.h renamed to src/Arduino_RPClite.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// Created by lucio on 4/8/25.
33
//
44

5-
#ifndef RPCLITE_H
6-
#define RPCLITE_H
5+
#ifndef ARDUINO_RPCLITE_H
6+
#define ARDUINO_RPCLITE_H
77

88
#include "Arduino.h"
99

@@ -16,4 +16,4 @@
1616
#include "DummyTransport.h"
1717
#include "SerialTransport.h"
1818

19-
#endif //RPCLITE_H
19+
#endif //ARDUINO_RPCLITE_H

0 commit comments

Comments
 (0)