Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Introduction

The sensor module is responsible for taking telemetry from the environment, logging it to storage and reporting those measurements to other modules.  

This page reflects the software design for the second revision of the sensor module

Data

NameDataTypeSize (bytes)Sample Rate (Hz)
MS5611

Pressure

Temperature

float

float

32

32

100
BMP388

Pressure

Temperature

float

float

32

32

100
LSM6DSL

Accel X

Accel Y

Accel Z

Gyro X

Gyro Y

Gyro Z

float

float

float

float

float

float

32

32

32

32

32

32

100
LIS3MDL

Mag X

Mag Y

Mag Z

float

float

float

32

32

32

100
ADXL375

Accel X

Accel Y

Accel Z

float

float

float

32

32

32

100
TMP117Temperaturefloat3210


*** Note that noted sample rates are somewhat placeholders and subject to change. Refer to Backplane PDR on data budget for more accurate numbers. 

*** Some sensors also are not going to sample at exactly 100 Hz. Some sensors do sample at 104 for example 

Tasks

NameResponsibilityPriority
100 Hz TelemetryRead in sensor values sampling at 100 Hz and placing it on a queue for consumptionHigh
10 Hz Telemetry Read in sensor values sampling at 10 Hz and placing it on a queue for consumptionLow
Ethernet TransmitTransmit sensor data to other modulesMedium
Data Logging Log sensor telemetryMedium


Callbacks

NameResponsibility
Ethernet ReceiveReceive data from Ethernet. This will mostly likely be notifications from radio module that liftoff occurred to serve as redundancy in case lift off detection fails
  • No labels