top of page
Justin Michaud
TALOS


What SDL’s First Flight Data Taught Me
The first SDL flights were not about proving a finished avionics system. They were about getting real data from a rocket, validating the basic hardware and firmware, and finding out what needed to improve next. At this stage, SDL was still closer to a debug data logger than a polished flight computer. That was intentional. The goal was to get the board into a real flight environment, collect enough useful data to understand what happened, and use that data to guide the next v
Justin Michaud
May 169 min read


SDL’s Packet System
SDL is built around a simple idea: collect useful flight data, store it reliably, and make it easy to analyze after the flight. That sounds straightforward, but the data has to move through several different paths. During development, USB serial output is useful because it gives immediate feedback. During flight, onboard flash is the priority because it can store data directly on the board. After flight, SD card export makes the data easy to retrieve. LoRa telemetry adds a li
Justin Michaud
May 89 min read


SDL Firmware Architecture
SDL started as a rocket data logger, but even a basic flight data logger quickly becomes more complicated than just reading a sensor and printing values. The board has multiple IMUs, barometers, GPS, magnetometer, power monitoring, onboard flash, SD card storage, USB output, LoRa telemetry, status LEDs, and a buzzer. Each device has its own setup process, communication bus, timing requirements, and failure modes. If all of that code lived directly in the main loop, the firmwa
Justin Michaud
May 28 min read


Sentinel: Early Dev
The Sentinel Data Logger (SDL) began as a compact avionics platform designed to capture high-resolution flight data during experimental rocket launches. Early in development, the focus was on building a robust hardware foundation capable of recording multiple synchronized sensor streams while remaining reliable in the harsh conditions of rocket flight. The board integrates an STM32-based microcontroller with several onboard sensors—including inertial measurement units and bar
Justin Michaud
Feb 11 min read


TALOS Assembly
The rocket used to test the SDL board is based on a modified Mustang kit from AeroTech. The kit provides a solid baseline airframe, which makes it a good starting point for avionics testing while still leaving room for small modifications to accommodate custom payload hardware. Assembly begins with the standard kit components—airframe tube, fins, motor mount, and recovery system—laid out and prepared before construction. Using a kit like this helps keep the structural side o
Justin Michaud
Dec 1, 20251 min read
bottom of page