MRAS
Multi Rocket Avionics System
Loading...
Searching...
No Matches
StateEstimatorMsg.h
1#ifndef MRAS_STATEESTIMATORMSG_H
2#define MRAS_STATEESTIMATORMSG_H
3
4#include "SystemMessage.h"
5
7{
8 explicit StateEstimatorMsg() : SystemMessage(StateEstimatorMsg_t) {}
9
10 float estimatedAltitude = 0;
11 float estimatedVelocity = 0;
12};
13
14
15#endif
A base class for all system messages.
Definition: SystemMessage.h:32
Definition: StateEstimatorMsg.h:7