clang-tidy

This commit is contained in:
Tomasz Duda 2024-08-09 21:11:21 +02:00
parent 73a63e8dbb
commit 8bdf87aae8
3 changed files with 19 additions and 22 deletions

View file

@ -90,7 +90,7 @@ struct BedjetStatusPacket {
int unused_6 : 1; // 0x4
bool is_dual_zone : 1; /// Is part of a Dual Zone configuration
int unused_7 : 1; // 0x1
} dual_zone_flags;
} dual_zone_flags; // NOLINT(clang-diagnostic-unaligned-access)
uint8_t unused_4 : 8; // Unknown 23-24 = 0x1310
uint8_t unused_5 : 8; // Unknown 23-24 = 0x1310

View file

@ -199,6 +199,7 @@ lib_deps =
bblanchon/ArduinoJson@7.0.0 ; json
wjtje/qr-code-generator-library@1.7.0 ; qr_code
lvgl/lvgl@8.4.0 ; lvgl
pavlodn/HaierProtocol@0.9.31 ; haier
; All the actual environments are defined below.

View file

@ -241,33 +241,29 @@ def main():
if "zephyr" in triplet:
exclude_components = [
"api",
"web_server_base",
"web_server",
"prometheus",
"captive_portal",
"socket",
"voice_assistant",
"homeassistant",
"bluetooth_proxy",
"wake_on_lan",
"esphome",
"captive_portal",
"e131",
"haier",
"improv_serial",
"md5",
"mlx90393",
"online_image",
"sgp4x",
"wireguard",
"tuya",
"status",
"nextion",
"improv_base",
"esphome",
"homeassistant",
"http_request",
"improv_base",
"improv_serial", # FIXME
"md5", # FIXME
"mlx90393", # FIXME
"online_image",
"ota",
"prometheus",
"sgp4x", # FIXME
"socket",
"status",
"voice_assistant",
"wake_on_lan",
"web_server",
"web_server_base",
"wifi_info",
"wifi_signal",
"bedjet",
"wireguard",
]
build_all_include(exclude_components)
files.insert(0, temp_header_file)