32 lines
644 B
C
32 lines
644 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_HEXFILERECORD_P_H
|
|
#define AQH_HEXFILERECORD_P_H
|
|
|
|
|
|
#include "./hexfilerecord.h"
|
|
|
|
|
|
|
|
struct AQH_HEXFILERECORD
|
|
{
|
|
GWEN_LIST_ELEMENT(AQH_HEXFILERECORD)
|
|
|
|
uint8_t byteCount;
|
|
uint16_t address;
|
|
uint8_t recordType;
|
|
uint8_t *dataPointer;
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|