Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ templates/

# Developer's notes
notes/

# Deprecated
.src.deprecated.d/
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -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":
Expand Down
4 changes: 3 additions & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name=CRSFforArduino
version=2025.10.26
version=2025.12.07
author=Cassandra Robinson <[email protected]>
maintainer=Cassandra Robinson <[email protected]>
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
Expand Down
8 changes: 4 additions & 4 deletions src/CFA_Config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading