

The TBS Crossfire Nano RX SE is a compact and lightweight long-range receiver designed for remote control applications. It is particularly popular in drones and RC vehicles due to its advanced telemetry capabilities and low-latency communication. This receiver is part of the TBS Crossfire ecosystem, which is renowned for its reliable and robust long-range performance. The Nano RX SE is ideal for users who require a small form factor without compromising on performance.








The TBS Crossfire Nano RX SE is designed to deliver high performance in a small package. Below are its key technical specifications:
| Specification | Details |
|---|---|
| Operating Voltage | 4.5V - 5.5V |
| Power Consumption | 1W (maximum) |
| Frequency Range | 868 MHz / 915 MHz (region-specific) |
| Communication Protocol | TBS Crossfire |
| Latency | As low as 4 ms |
| Dimensions | 18 mm x 11 mm x 2 mm |
| Weight | 0.5 g |
| Antenna Connector | u.FL |
| Telemetry Support | Yes |
| Range | Up to 50 km (line of sight) |
The TBS Crossfire Nano RX SE has a simple pinout for easy integration into your system. Below is the pin configuration:
| Pin | Name | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | 5V | Power input (4.5V - 5.5V) |
| 3 | CH1 | Channel 1 output (PWM or CRSF signal) |
| 4 | CH2 | Channel 2 output (PWM or CRSF signal) |
| 5 | CRSF TX | Crossfire protocol transmit (connect to flight controller RX pin) |
| 6 | CRSF RX | Crossfire protocol receive (connect to flight controller TX pin) |
5V pin to a regulated 5V power source and the GND pin to the ground of your system.CRSF TX and CRSF RX pins to connect the receiver to the UART port of your flight controller.CRSF TX pin of the receiver is connected to the RX pin of the flight controller, and the CRSF RX pin is connected to the TX pin.The TBS Crossfire Nano RX SE can be used with an Arduino UNO for basic telemetry or control. Below is an example of how to read data from the receiver using the CRSF protocol:
#include <SoftwareSerial.h>
// Define RX and TX pins for the Arduino
#define RX_PIN 10 // Connect to CRSF TX pin on the receiver
#define TX_PIN 11 // Connect to CRSF RX pin on the receiver
// Initialize SoftwareSerial for communication with the receiver
SoftwareSerial crsfSerial(RX_PIN, TX_PIN);
void setup() {
// Start serial communication for debugging
Serial.begin(9600);
// Start communication with the receiver
crsfSerial.begin(115200);
Serial.println("TBS Crossfire Nano RX SE - Arduino Example");
}
void loop() {
// Check if data is available from the receiver
if (crsfSerial.available()) {
// Read and print the incoming data
char incomingData = crsfSerial.read();
Serial.print("Received: ");
Serial.println(incomingData);
}
}
Receiver Not Binding to Transmitter:
No Telemetry Data:
CRSF TX and CRSF RX pins are correctly connected to the flight controller.Poor Signal Range:
Receiver Not Powering On:
Q: Can I use the Nano RX SE with other transmitters?
A: The Nano RX SE is designed to work exclusively with TBS Crossfire transmitters.
Q: What is the maximum range of the receiver?
A: The receiver can achieve up to 50 km of range in ideal line-of-sight conditions.
Q: How do I update the firmware?
A: Use the TBS Agent software to update the firmware via USB or through your transmitter.
Q: Can I use this receiver with a 3.3V power source?
A: No, the receiver requires a 4.5V - 5.5V power supply for proper operation.
By following this documentation, you can effectively integrate and troubleshoot the TBS Crossfire Nano RX SE in your projects.