This commit is contained in:
2020-06-23 14:26:54 +02:00
parent 692ade6c17
commit 4240ea57d4
2 changed files with 23 additions and 20 deletions

View File

@ -442,13 +442,13 @@ typedef struct {
/** pattern structure */
struct patternParameters {
uint64_t word[MAX_PATTERN_LENGTH] = {};
uint64_t word[MAX_PATTERN_LENGTH]{};
uint64_t patioctrl{0};
uint32_t patlimits[2] = {};
uint32_t patloop[6] = {};
uint32_t patnloop[3] = {};
uint32_t patwait[3] = {};
uint64_t patwaittime[3] = {};
uint32_t patlimits[2]{};
uint32_t patloop[6]{};
uint32_t patnloop[3]{};
uint32_t patwait[3]{};
uint64_t patwaittime[3]{};
} __attribute__((packed));
#endif