avr-fw-modules/core/include/sys/bootsys.h

20 lines
264 B
C
Executable File

#pragma once
#include <stdint.h>
struct bootsys {
uint32_t version;
union {
uint32_t flags;
struct {
uint32_t flashimage:1; // Image für Update steht bereit
uint32_t flashed:1; // Kennung Update erfolgreich
};
};
uint32_t reserve[14];
};