/cdh_firmware_csdc5

CSDC5 Command and Data Handling Firmware

Primary LanguageAssembly

CDH Firmware CSDC5

Overview

This repository contains firmware for the UBC Orbit Command and Data Handling system. The goal of CDH is to provide automatic on-board satellite operation, along with command-driven operation when requested by ground. In the process, CDH collects telemetry for health assessment of the satellite and handles any detected on-orbit errors. CDH must be a reliable, self-sustaining system to enable the payload to focus on mission execution, and enable other sub-systems to support the payload. The payload that this CDH system has been designed to support is:

  • On-demand photo of specified location and downlink of photo to amateur radio operators worldwide

Extra documentation

Further information on the project can be found in the /docs directory, including an overview of the repository layout and guidelines.

Trillium

Information to come.

Software Components

  • FreeRTOS V9: real-time OS commonly used in embedded systems. Helps with prioritizing different functions and suspending tasks where no longer needed.
  • Command System: Structure TBD
  • Filesystem: TBD

Hardware Components

  • STMicroelectronics STM32H743ZIT: main microcontroller for the CDH. Chosen for its memory capacity, peripheral count, ECC flash, and embedded hardware features.
  • MRAM: non-volatile memory storage for CDH, used for telemetry and command storage. MRAM performs well under radiation, and is available in a large enough capacity to meet our requirements.
  • (Embedded) Real-Time Clock: embedded in MCU, used to timestamp satellite telemetry and provide a time reference for commands.
  • (Embedded) Temperature Sensor: embedded in MCU, monitors CDH board temperature to ensure it is within operating limits.
  • eFuse: monitors current draw of all components on the CDH board, and cuts power when this current draw spikes to unreasonable values to mitigate single even latchups (SEL). Also monitors for overvoltage and undervoltage.

Documentation

Technical Documentation

Educational Resources

STM32H743ZI Resources

STM32F401RE Resources

FreeRTOS Resources