diff --git a/.gitignore b/.gitignore index dc1ca01e..decd19fe 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,6 @@ templates/ # Developer's notes notes/ + +# Deprecated +.src.deprecated.d/ diff --git a/library.json b/library.json index db369b31..b6621be9 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.10.26", + "version": "2025.12.07", "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": diff --git a/library.properties b/library.properties index c537f54d..e6b46d44 100644 --- a/library.properties +++ b/library.properties @@ -1,8 +1,10 @@ name=CRSFforArduino -version=2025.10.26 +version=2025.12.07 author=Cassandra Robinson maintainer=Cassandra Robinson sentence=CRSF for Arduino brings the Crossfire Protocol to the Arduino ecosystem. +paragraph=This library enables you to connect either a TBS Crossfire or ExpressLRS receiver to your development board, giving you access to telemetry and up to 16 11-bit proportional RC channels over a tried-and-true serial protocol. +architectures=esp32,rp2040,samd,teensy category=Communication url=https://github.com/ZZ-Cat/CRSFforArduino dot_a_linkage=false diff --git a/src/CFA_Config.hpp b/src/CFA_Config.hpp index ab2a6fea..c96e8ea6 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.10.26" -#define CRSFFORARDUINO_VERSION_DATE "2025-10-26" +#define CRSFFORARDUINO_VERSION "2025.12.07" +#define CRSFFORARDUINO_VERSION_DATE "2025-12-07" #define CRSFFORARDUINO_VERSION_MAJOR 2025 -#define CRSFFORARDUINO_VERSION_MINOR 10 -#define CRSFFORARDUINO_VERSION_PATCH 26 +#define CRSFFORARDUINO_VERSION_MINOR 12 +#define CRSFFORARDUINO_VERSION_PATCH 7 // This is set to 1 if the version is a pre-release version. #define CRSFFORARDUINO_VERSION_IS_PRERELEASE 0