feat(esp32c5): add struct name and reformat struct headers (part3)

This commit is contained in:
laokaiyao
2023-11-30 15:47:03 +08:00
parent 096d1ce1bb
commit 9b31979107
71 changed files with 498 additions and 18805 deletions

View File

@@ -213,7 +213,7 @@ typedef union {
} huk_date_reg_t;
typedef struct {
typedef struct huk_dev_t {
uint32_t reserved_000;
volatile huk_clk_reg_t clk;
volatile huk_int_raw_reg_t int_raw;
@@ -231,6 +231,7 @@ typedef struct {
volatile uint32_t info[96];
} huk_dev_t;
extern huk_dev_t HUK;
#ifndef __cplusplus
_Static_assert(sizeof(huk_dev_t) == 0x280, "Invalid size of huk_dev_t structure");