diff --git a/library.json b/library.json index 714120f2..b5663b41 100644 --- a/library.json +++ b/library.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json", "name": "CRSFforArduino", - "version": "2025.12.8", + "version": "2025.12.11", "description": "An Arduino Library for communicating with ExpressLRS and TBS Crossfire receivers.", "keywords": "arduino, remote-control, arduino-library, protocols, rc, radio-control, crsf, expresslrs", "repository": @@ -18,8 +18,9 @@ "maintainer": true } ], - "license": "GNU AGPLv3", + "license": "AGPL-3.0-or-later", "homepage": "https://github.com/ZZ-Cat/CRSFforArduino", + "headers" : "CRSFforArduino.hpp", "dependencies": { }, "frameworks": "Arduino", @@ -31,5 +32,25 @@ "teensy" ], "examples": [ + { + "name": "flight_modes", + "base": "examples/flight_modes", + "files": ["flight_modes.ino"] + }, + { + "name": "link_stats", + "base": "examples/link_stats", + "files": ["link_stats.ino"] + }, + { + "name": "rc_channels", + "base": "examples/rc_channels", + "files": ["rc_channels.ino"] + }, + { + "name": "telemetry", + "base": "examples/telemetry", + "files": ["telemetry.ino"] + } ] } diff --git a/library.properties b/library.properties index 6fdb1d21..d643b440 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=CRSFforArduino -version=2025.12.8 +version=2025.12.11 author=Cassandra Robinson maintainer=Cassandra Robinson sentence=CRSF for Arduino brings the Crossfire Protocol to the Arduino ecosystem. diff --git a/src/CFA_Config.hpp b/src/CFA_Config.hpp index 85d91811..efdf3a47 100644 --- a/src/CFA_Config.hpp +++ b/src/CFA_Config.hpp @@ -35,11 +35,11 @@ namespace crsfForArduinoConfig Versioning is based on a rolling release model and is backwards-compatible with Semantic Versioning 2.0.0. See https://semver.org/ for more information. */ -#define CRSFFORARDUINO_VERSION "2025.12.8" -#define CRSFFORARDUINO_VERSION_DATE "2025-12-08" +#define CRSFFORARDUINO_VERSION "2025.12.11" +#define CRSFFORARDUINO_VERSION_DATE "2025-12-11" #define CRSFFORARDUINO_VERSION_MAJOR 2025 #define CRSFFORARDUINO_VERSION_MINOR 12 -#define CRSFFORARDUINO_VERSION_PATCH 8 +#define CRSFFORARDUINO_VERSION_PATCH 11 // This is set to 1 if the version is a pre-release version. #define CRSFFORARDUINO_VERSION_IS_PRERELEASE 0