#pragma once #include 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]; };