fix(uart): fix uart_config_t structure size difference in C and C++

This commit is contained in:
Song Ruo Jing
2024-07-05 22:17:31 +08:00
parent d9a9bab390
commit f24d529c70
2 changed files with 4 additions and 2 deletions

View File

@@ -47,11 +47,9 @@ typedef struct {
#endif
};
struct {
#if SOC_UART_SUPPORT_SLEEP_RETENTION
uint32_t backup_before_sleep: 1; /*!< If set, the driver will backup/restore the HP UART registers before entering/after exiting sleep mode.
By this approach, the system can power off HP UART's power domain.
This can save power, but at the expense of more RAM being consumed */
#endif
} flags; /*!< Configuration flags */
} uart_config_t;