MRAS
Multi Rocket Avionics System
Loading...
Searching...
No Matches
TextLogMsg.h
1//
2// Created by Tom Danvers on 10/02/2023.
3//
4
5#ifndef MRAS_TEXTLOGMSG_H
6#define MRAS_TEXTLOGMSG_H
7
8#include "SystemMessage.h"
9
15struct TextLogMsg : public SystemMessage {
16 TextLogMsg() : SystemMessage(TextLogMsg_t) {}
17
21 char text[255] = {};
22};
23
24#endif //MRAS_TEXTLOGMSG_H
A base class for all system messages.
Definition: SystemMessage.h:32
A message containing text to be logged.
Definition: TextLogMsg.h:15
char text[255]
The text to be logged. Max 255 chars in length.
Definition: TextLogMsg.h:21