31 lines
614 B
C
31 lines
614 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_FLASHRECORD_P_H
|
|
#define AQH_FLASHRECORD_P_H
|
|
|
|
|
|
#include "./flashrecord.h"
|
|
|
|
|
|
|
|
struct AQH_FLASHRECORD
|
|
{
|
|
GWEN_LIST_ELEMENT(AQH_FLASHRECORD)
|
|
|
|
uint32_t address;
|
|
uint32_t dataLength;
|
|
uint8_t *dataPointer;
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|