fix(system): format esp_common, app_format and bootloader_format with astyle

This commit is contained in:
Marius Vikhammer
2024-01-29 09:52:55 +08:00
parent e8dee79bb5
commit 043dae211e
10 changed files with 5 additions and 18 deletions

View File

@@ -10,7 +10,6 @@
#include "esp_app_desc.h"
#include "sdkconfig.h"
// Application version info
const __attribute__((weak)) __attribute__((section(".rodata_desc"))) esp_app_desc_t esp_app_desc = {
.magic_word = ESP_APP_DESC_MAGIC_WORD,
@@ -42,7 +41,6 @@ const __attribute__((weak)) __attribute__((section(".rodata_desc"))) esp_app_de
#endif
};
#ifndef CONFIG_APP_EXCLUDE_PROJECT_VER_VAR
_Static_assert(sizeof(PROJECT_VER) <= sizeof(esp_app_desc.version), "PROJECT_VER is longer than version field in structure");
#endif