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

20 lines
264 B
C
Raw Normal View History

2017-09-27 13:25:39 +02:00
#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];
};