24 lines
482 B
C
24 lines
482 B
C
//
|
|
// Created by cfif on 26.05.2026.
|
|
//
|
|
|
|
#ifndef HVAC_M7_ERASEMEMORY_H
|
|
#define HVAC_M7_ERASEMEMORY_H
|
|
|
|
#include "stdint.h"
|
|
|
|
#pragma scalar_storage_order big-endian
|
|
|
|
typedef struct __attribute__ ((packed)) {
|
|
uint8_t ServiceId;
|
|
uint8_t RouteControlType;
|
|
uint16_t RoutineIdentifier;
|
|
uint8_t addressAndLengthFormatIdentifier;
|
|
uint32_t memoryAddress;
|
|
uint32_t memorySize;
|
|
} tEraseMemory;
|
|
|
|
#pragma scalar_storage_order little-endian
|
|
|
|
#endif //HVAC_M7_ERASEMEMORY_H
|