/* * message.h * * Created: 02.03.2019 09:30:53 * Author: Jens */ #ifndef MESSAGE_H_ #define MESSAGE_H_ typedef enum _eMsgCode { NOP = 0, Uart, AdcComplete, Timer, } MsgCode; typedef struct _sMsg_t { MsgCode code; uint8_t data; } Msg_t; #endif /* MESSAGE_H_ */