33 lines
596 B
C
33 lines
596 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2023 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
#ifndef AQH_MSG_P_H
|
|
#define AQH_MSG_P_H
|
|
|
|
|
|
#include "aqhome/msg.h"
|
|
|
|
|
|
|
|
|
|
struct AQH_MSG {
|
|
GWEN_LIST_ELEMENT(AQH_MSG)
|
|
|
|
uint8_t buffer[AQH_MAXMSGSIZE];
|
|
uint8_t bytesInBuffer;
|
|
uint8_t currentPos;
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|