Skip to content

Commit d007578

Browse files
authored
fix(platformio): PlatformIO library.json manifest (#169)
2 parents 374e59d + 526759d commit d007578

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

library.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
33
"name": "CRSFforArduino",
4-
"version": "2025.12.8",
4+
"version": "2025.12.11",
55
"description": "An Arduino Library for communicating with ExpressLRS and TBS Crossfire receivers.",
66
"keywords": "arduino, remote-control, arduino-library, protocols, rc, radio-control, crsf, expresslrs",
77
"repository":
@@ -18,8 +18,9 @@
1818
"maintainer": true
1919
}
2020
],
21-
"license": "GNU AGPLv3",
21+
"license": "AGPL-3.0-or-later",
2222
"homepage": "https://github.com/ZZ-Cat/CRSFforArduino",
23+
"headers" : "CRSFforArduino.hpp",
2324
"dependencies": {
2425
},
2526
"frameworks": "Arduino",
@@ -31,5 +32,25 @@
3132
"teensy"
3233
],
3334
"examples": [
35+
{
36+
"name": "flight_modes",
37+
"base": "examples/flight_modes",
38+
"files": ["flight_modes.ino"]
39+
},
40+
{
41+
"name": "link_stats",
42+
"base": "examples/link_stats",
43+
"files": ["link_stats.ino"]
44+
},
45+
{
46+
"name": "rc_channels",
47+
"base": "examples/rc_channels",
48+
"files": ["rc_channels.ino"]
49+
},
50+
{
51+
"name": "telemetry",
52+
"base": "examples/telemetry",
53+
"files": ["telemetry.ino"]
54+
}
3455
]
3556
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=CRSFforArduino
2-
version=2025.12.8
2+
version=2025.12.11
33
author=Cassandra Robinson <nicad.heli.flier@gmail.com>
44
maintainer=Cassandra Robinson <nicad.heli.flier@gmail.com>
55
sentence=CRSF for Arduino brings the Crossfire Protocol to the Arduino ecosystem.

src/CFA_Config.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ namespace crsfForArduinoConfig
3535
Versioning is based on a rolling release model
3636
and is backwards-compatible with Semantic Versioning 2.0.0.
3737
See https://semver.org/ for more information. */
38-
#define CRSFFORARDUINO_VERSION "2025.12.8"
39-
#define CRSFFORARDUINO_VERSION_DATE "2025-12-08"
38+
#define CRSFFORARDUINO_VERSION "2025.12.11"
39+
#define CRSFFORARDUINO_VERSION_DATE "2025-12-11"
4040
#define CRSFFORARDUINO_VERSION_MAJOR 2025
4141
#define CRSFFORARDUINO_VERSION_MINOR 12
42-
#define CRSFFORARDUINO_VERSION_PATCH 8
42+
#define CRSFFORARDUINO_VERSION_PATCH 11
4343

4444
// This is set to 1 if the version is a pre-release version.
4545
#define CRSFFORARDUINO_VERSION_IS_PRERELEASE 0

0 commit comments

Comments
 (0)