MRAS
Multi Rocket Avionics System
Loading...
Searching...
No Matches
RadioStatusMsg.h
1//
2// Created by Tom Danvers on 11/03/2023.
3//
4
5#ifndef MRAS_RADIOSTATUSMSG_H
6#define MRAS_RADIOSTATUSMSG_H
7
8#include "SystemMessage.h"
9
10// create RadioStatusMessage SystemMessage
12 RadioStatusMsg() : SystemMessage(RadioStatusMsg_t) {}
13
14 float RSSI = 0;
15 float SNR = 0;
16 uint16_t PPS = 0;
17};
18
19#endif //MRAS_RADIOSTATUSMSG_H
A base class for all system messages.
Definition: SystemMessage.h:32
Definition: RadioStatusMsg.h:11