CompactFrameFormat 1.0.0-rc3
dotnet add package CompactFrameFormat --version 1.0.0-rc3
NuGet\Install-Package CompactFrameFormat -Version 1.0.0-rc3
<PackageReference Include="CompactFrameFormat" Version="1.0.0-rc3" />
<PackageVersion Include="CompactFrameFormat" Version="1.0.0-rc3" />
<PackageReference Include="CompactFrameFormat" />
paket add CompactFrameFormat --version 1.0.0-rc3
#r "nuget: CompactFrameFormat, 1.0.0-rc3"
#:package CompactFrameFormat@1.0.0-rc3
#addin nuget:?package=CompactFrameFormat&version=1.0.0-rc3&prerelease
#tool nuget:?package=CompactFrameFormat&version=1.0.0-rc3&prerelease
C# Reference Implementation of Compact Frame Format
Overview
Compact Frame Format (CFF) is a way of delineating messages (called the payload) in a byte stream. It is designed specifically with Microcontrollers (MCUs) in mind, leading to the following design goals:
- Take advantage of hardware acceleration like Direct Memory Access (DMA) controllers and the CRC peripherals available on most 32-bit MCUs. This precludes the use of delimiter-based packet boundaries that require the CPU to examine every byte.
- Exploit the fact that modern serial links are already reliable. Universal Serial Bus (USB), Controller Area Network Bus (CANBus), and Bluetooth Low Energy (BLE), already detect and retransmit lost or corrupted packets. Other serial interfaces like Universal Asynchronous Receiver-Transmitters (UART), Serial Peripheral Interface (SPI), and Inter-Integrated Circuit (I2C) are often reliable in practice, with extremely low error rates when the wiring is short and clean. Therefore, the it's okay for error recovery to be expensive, so long as it's possible and the happy path is cheap.
- Easy to implement and debug. Firmware running on MCUs is not amenable to taking dependencies on 3rd party libraries, so the implementation should be small enough to fit comfortably in a single file, and simple enough that you wouldn't mind implementing it yourself if you had to.
- Interoperate cleanly with binary serialization formats like FlatBuffers and CBOR.
In CFF, a frame consists of a header, a payload, and a payload CRC.
block-beta
columns 6
block:Header["Header<br><br><br>"]:4
columns 4
space:4
Preamble FrameCounter["Frame Counter"] PayloadSize["Payload Size"] HeaderCRC["Header CRC"]
end
Payload
PayloadCRC["Payload CRC"]
The header consists of:
- A 2-byte preamble: [0xFA, 0xCE]. Note that this is better though of as an array of two bytes rather than an unsigned short (ushort) because it is transmitted as 0xFA, 0xCE (spelling face), whereas the ushort 0xFACE would be transmitted as 0xCE, 0xFA (spelling nothing) in little endian.
- A little-endian ushort frame counter which increments for every frame sent and rolls over to 0 after 65,535 (2^16 - 1) frames have been sent.
- A little-endian ushort payload size, in bytes. This gives a theoretical maximum payload size of 65,535, though few MCU-based applications would want to support this. A protocol making use of CFF can enforce smaller maximum payload sizes if desired. Note that this excludes both the header and the payload CRC at the end. In other words, the frame size is
header_size + payload_size + crc_size. - A 16-bit header CRC (see below for details) calculated over the preamble, frame counter, and payload size. This allows the receiver to validate the header and, crucially, the payload size without having to read in the entire frame, as would be the case if there were just one CRC, at the end, covering the entire frame. The problem with having a single CRC is that the if the payload size is corrupted in such a way that it is extremely large (65,535 in the pathological case) the reciever will not detect this until it reads that many bytes, calculates the CRC, and discovers that it doesn't match. Depending on the transmitter's data rate at the time of the error, it could take a long time to receive this many bytes, making the issue look like a dropped link.
Both CRCs are calculated using CRC-16/CCITT-FALSE, with the following settings:
- Width: 16
- Polynomial: 0x1021
- Init: 0xFFFF
- RefIn/RefOut: false / false
- XorOut: 0x0000
- Check("123456789): 0x29B1l
Usage
Installation
Install the NuGet package:
dotnet add package CompactFrameFormat
Or via Package Manager Console:
Install-Package CompactFrameFormat
API Reference
The CFF library provides three main methods for working with frames:
Creating Frames
Use CreateFrame to encode payload data into a CFF frame:
using CompactFrameFormat;
// Create a frame with string payload
var payload = Encoding.UTF8.GetBytes("Hello, World!");
ushort frameCounter = 42;
byte[] frame = Cff.CreateFrame(payload, frameCounter);
// Frame now contains the complete CFF frame ready for transmission
Console.WriteLine($"Created frame of {frame.Length} bytes");
Console.WriteLine($"Frame bytes: {Convert.ToHexString(frame)}");
Parsing Single Frames
Use TryParseFrame to parse a single frame from byte data:
using CompactFrameFormat;
// First create a frame to parse
var payload = Encoding.UTF8.GetBytes("Test Message");
ushort frameCounter = 123;
byte[] receivedData = Cff.CreateFrame(payload, frameCounter);
var result = Cff.TryParseFrame(receivedData, out CFrame parsedFrame, out int consumedBytes);
switch (result)
{
case FrameParseResult.Success:
Console.WriteLine($"Frame counter: {parsedFrame.FrameCounter}");
Console.WriteLine($"Payload: {Encoding.UTF8.GetString(parsedFrame.Payload.Span)}");
Console.WriteLine($"Consumed {consumedBytes} bytes");
break;
case FrameParseResult.InsufficientData:
Console.WriteLine("Need more data to complete frame");
break;
case FrameParseResult.InvalidPreamble:
Console.WriteLine("Invalid frame preamble");
break;
case FrameParseResult.InvalidHeaderCrc:
Console.WriteLine("Header CRC validation failed");
break;
case FrameParseResult.InvalidPayloadCrc:
Console.WriteLine("Payload CRC validation failed");
break;
}
Finding Multiple Frames
Use FindFrames to locate and parse all valid frames in a data buffer:
using CompactFrameFormat;
// Create multiple frames and combine them into a single buffer
var messages = new[] { "Frame 1", "Frame 2", "Frame 3" };
var buffer = new List<byte>();
// Create frames and add them to buffer
for (ushort i = 0; i < messages.Length; i++)
{
var payload = Encoding.UTF8.GetBytes(messages[i]);
var frame = Cff.CreateFrame(payload, i);
buffer.AddRange(frame);
}
// Add some noise/corrupted data
buffer.AddRange(new byte[] { 0x00, 0x11, 0x22, 0x33 });
byte[] dataBuffer = buffer.ToArray();
Console.WriteLine($"Buffer contains {dataBuffer.Length} bytes total");
var frames = Cff.FindFrames(dataBuffer, out var consumedBytes);
Console.WriteLine($"Processed {consumedBytes} bytes, found {frames.Count()} frames");
foreach (var frame in frames)
{
Console.WriteLine($"Found frame:");
Console.WriteLine($" Frame counter: {frame.FrameCounter}");
Console.WriteLine($" Payload size: {frame.PayloadSizeBytes} bytes");
Console.WriteLine($" Frame size: {frame.FrameSizeBytes} bytes");
// Process payload
var payloadText = Encoding.UTF8.GetString(frame.Payload.Span);
Console.WriteLine($" Payload: {payloadText}");
}
Complete Example
using System;
using System.Text;
using CompactFrameFormat;
class Program
{
static void Main()
{
// Create and send frames
var messages = new[] { "Hello", "World", "CFF" };
var buffer = new byte[1024];
int bufferPos = 0;
Console.WriteLine("Creating frames:");
for (ushort i = 0; i < messages.Length; i++)
{
var payload = Encoding.UTF8.GetBytes(messages[i]);
var frame = Cff.CreateFrame(payload, i);
Console.WriteLine($" Frame {i}: {messages[i]} -> {frame.Length} bytes");
// Simulate adding to receive buffer
Array.Copy(frame, 0, buffer, bufferPos, frame.Length);
bufferPos += frame.Length;
}
Console.WriteLine($"\nBuffer contains {bufferPos} bytes total");
// Parse all frames from buffer
var receivedFrames = Cff.FindFrames(buffer.AsMemory(0, bufferPos), out var consumedBytes);
Console.WriteLine($"\nProcessed {consumedBytes} bytes from buffer");
Console.WriteLine("Received frames:");
foreach (var frame in receivedFrames)
{
var message = Encoding.UTF8.GetString(frame.Payload.Span);
Console.WriteLine($" Frame {frame.FrameCounter}: {message}");
}
}
}
Development
Clone the repository:
git clone https://github.com/CompactFrameFormat/cff-csharp.git
cd cff-csharp
Build the Solution:
cd cff-csharp
dotnet build
Run Tests:
dotnet test
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Memory (>= 4.5.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.