aqhome: added lib for hexfiles and flash records.

This commit is contained in:
Martin Preuss
2023-04-18 19:41:56 +02:00
parent 93e89e801e
commit 4e409851f6
12 changed files with 1136 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
/****************************************************************************
* 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