Enum MessageTypeFlags
Message type flags describing a code reply. This is equal to MessageType in RepRapFirmware. Make sure to keep the destinations in sync with the CodeChannel entries
Namespace: DuetControlServer.SPI.Communication.Shared
Assembly: DuetControlServer.dll
Syntax
[Flags]
public enum MessageTypeFlags : uint
Fields
Name | Description |
---|---|
AutoPauseMessage | A message that is to be sent to an auto-pause processor |
Aux2Message | A message that is to be sent to the second UART port |
AuxMessage | A message that is to be sent to the panel |
BinaryCodeReplyFlag | This message comes from a binary G-Code buffer |
BlockingUsbMessage | A message that is to be sent to USB in blocking mode |
DaemonMessage | A message that is to be sent to a daemon processor |
ErrorMessageFlag | This is an error message |
FileMessage | A message that is to be sent to a file processor |
GenericMessage | A message that is to be sent to the web, Telnet, USB and panel |
HttpMessage | A message that is to be sent to the web (HTTP) |
ImmediateLcdMessage | A message that is to be sent to LCD in immediate mode |
LcdMessage | A message that is to be sent to the panel |
LogInfo | Log level "info" (1): all messages of level "warn" plus info messages |
LogMessageHighBit | Log level consists of two bits. This is the high bit |
LogMessageLowBit | Log level consists of two bits. This is the low bit |
LogOff | Log level "off (3): do not log this message |
LogWarn | Log level "warn" (2): all messages of type Error and Warning are logged |
LoggedGenericMessage | A GenericMessage that is also logged |
NoDestinationMessage | A message that is going nowhere |
PushFlag | There is more to come; the message has been truncated |
QueueMessage | A message that is to be sent to the code queue channel |
RawMessageFlag | Do not encapsulate this message |
SbcMessage | A message that is to be sent to the SPI master |
TelnetMessage | A message that is to be sent to a Telnet client |
TriggerMessage | A message that is to be sent to the code queue channel |
UsbMessage | A message that is to be sent in non-blocking mode to the host via USB |
WarningMessageFlag | This is a warning message |