Compatibility matrixNEORACER DOCS
NEORACER DOCS
These docs are public and open source.Edit on GitHub
REFERENCE / COMPATIBILITY

THE COMPATIBILITY MATRIX.

The NeoRacer runs the same compute, operating system, and middleware the autonomous racing community already uses, so what you learn here carries over. This page is the reference for what the car is built on and what it interoperates with, grouped into the platform, the sensors and drive, and the racing ecosystem around it.

ROS 2 HumbleJetson Orin NanoF1TENTH topic-compatible
THE PLATFORM

COMPUTE, OS, MIDDLEWARE.

Every layer below is a standard the community already builds on. The Orin Nano is the same class of compute used across modern small-scale autonomy, Ubuntu 22.04 LTS is the release ROS 2 Humble targets, and Humble is the middleware your code talks to. Nothing here is bespoke to one vendor.

LayerWhat shipsNotes
ComputeNVIDIA Jetson Orin NanoThe OSCORE ESP32-S3 handles the real-time motor, servo, IMU, and Flysky RC loops, while the Jetson Orin Nano runs the stack and delivers 67 TOPS for perception and planning.
NVIDIA SDKJetPack 6.2The Linux kernel, GPU drivers, CUDA, and the AI runtime that come pre-flashed on the Jetson. Re-flashing follows Seeed's JetPack guide for the reComputer J4012.
Operating systemUbuntu 22.04.5 LTS (jammy)The long-term support release ROS 2 Humble is built and tested against, so packages from the wider ecosystem install without surprises. Python 3.10.12.
MiddlewareROS 2 HumbleThe robotics layer every topic, node, and message on the car is published through. Code you write against Humble targets standard ROS 2 interfaces.
NeoRacer driverneoracer_ros2_driver 0.1.0The ROS 2 backend that ships on every NeoRacer. Migrated from the MIT RACECAR Neo driver, retargeted for the OSCORE ESP32, the Lakibeam over UDP, and a USB MJPG camera. GPLv3.
Student libraryracecar-neo-libraryThe Python module student code is written against. The rc.* namespace it exposes is identical on the browser sim and the physical car, and it consumes the topic contract above.
Autonomy stackosracerThe general ROS 2 autonomy stack: SLAM through gmapping or Cartographer, and navigation through Nav2. Runs alongside the driver or on its own.
SENSORS AND DRIVE

SENSORS AND DRIVE.

Each sensor reaches your code through one rc.* call, so you read the world without touching a driver. The drive side speaks ackermann_msgs/AckermannDriveStamped, the same Ackermann message format the racing ecosystem expects, which is what makes the cross-platform rows further down hold.

ComponentHardwarerc.* accessWhat it gives you
LiDARRichbeam LakiBeam1rc.lidarA planar scan exposed as 720 samples at 0.5 degree spacing through rc.lidar. The sensor scans at 0.25 degree natively, so the raw cloud is finer than the teaching view.
CameraColor camerarc.cameraA 640 by 480 color frame per read. The depth source for color tracking, line following, and any vision your own code adds.
IMUQMI8658A + QMC6309 (9-axis)rc.physicsLinear acceleration and angular velocity from the QMI8658A, plus a magnetometer vector from the QMC6309, read through rc.physics.
DriveAckermann steeringrc.driveSpeed and steering commands carried as ackermann_msgs/AckermannDriveStamped, the same Ackermann message the wider racing ecosystem uses.
THE ECOSYSTEM

THE RACING ECOSYSTEM.

Because the car runs standard ROS 2 on standard topics, it lines up with the autonomous racing platforms students already meet in courses and competitions. The common ground is the topic contract: the LiDAR scan, the Ackermann drive command, and odometry under the names these stacks expect.

TargetStatusHow it lines up
F1TENTHTopic-compatibleThe contract matches on the topics that matter: /scan for the LiDAR, /drive for Ackermann commands, and /odom for odometry. Code written against the F1TENTH topic layout reads and drives the NeoRacer.
//The shared contract
  • /scan carries the planar LiDAR sweep, the depth source for wall follow, gap follow, and mapping.
  • /drive carries the Ackermann speed and steering command, the one channel your autonomy code writes to.
  • /odom carries odometry, the pose estimate the navigation layers read.