mirror of
https://github.com/esphome/esphome.git
synced 2025-02-25 04:22:30 +01:00
clang-tidy
This commit is contained in:
parent
73a63e8dbb
commit
8bdf87aae8
3 changed files with 19 additions and 22 deletions
|
@ -90,7 +90,7 @@ struct BedjetStatusPacket {
|
||||||
int unused_6 : 1; // 0x4
|
int unused_6 : 1; // 0x4
|
||||||
bool is_dual_zone : 1; /// Is part of a Dual Zone configuration
|
bool is_dual_zone : 1; /// Is part of a Dual Zone configuration
|
||||||
int unused_7 : 1; // 0x1
|
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_4 : 8; // Unknown 23-24 = 0x1310
|
||||||
uint8_t unused_5 : 8; // Unknown 23-24 = 0x1310
|
uint8_t unused_5 : 8; // Unknown 23-24 = 0x1310
|
||||||
|
|
|
@ -199,6 +199,7 @@ lib_deps =
|
||||||
bblanchon/ArduinoJson@7.0.0 ; json
|
bblanchon/ArduinoJson@7.0.0 ; json
|
||||||
wjtje/qr-code-generator-library@1.7.0 ; qr_code
|
wjtje/qr-code-generator-library@1.7.0 ; qr_code
|
||||||
lvgl/lvgl@8.4.0 ; lvgl
|
lvgl/lvgl@8.4.0 ; lvgl
|
||||||
|
pavlodn/HaierProtocol@0.9.31 ; haier
|
||||||
|
|
||||||
; All the actual environments are defined below.
|
; All the actual environments are defined below.
|
||||||
|
|
||||||
|
|
|
@ -241,33 +241,29 @@ def main():
|
||||||
if "zephyr" in triplet:
|
if "zephyr" in triplet:
|
||||||
exclude_components = [
|
exclude_components = [
|
||||||
"api",
|
"api",
|
||||||
"web_server_base",
|
|
||||||
"web_server",
|
|
||||||
"prometheus",
|
|
||||||
"captive_portal",
|
|
||||||
"socket",
|
|
||||||
"voice_assistant",
|
|
||||||
"homeassistant",
|
|
||||||
"bluetooth_proxy",
|
"bluetooth_proxy",
|
||||||
"wake_on_lan",
|
"captive_portal",
|
||||||
"esphome",
|
|
||||||
"e131",
|
"e131",
|
||||||
"haier",
|
"esphome",
|
||||||
"improv_serial",
|
"homeassistant",
|
||||||
"md5",
|
|
||||||
"mlx90393",
|
|
||||||
"online_image",
|
|
||||||
"sgp4x",
|
|
||||||
"wireguard",
|
|
||||||
"tuya",
|
|
||||||
"status",
|
|
||||||
"nextion",
|
|
||||||
"improv_base",
|
|
||||||
"http_request",
|
"http_request",
|
||||||
|
"improv_base",
|
||||||
|
"improv_serial", # FIXME
|
||||||
|
"md5", # FIXME
|
||||||
|
"mlx90393", # FIXME
|
||||||
|
"online_image",
|
||||||
"ota",
|
"ota",
|
||||||
|
"prometheus",
|
||||||
|
"sgp4x", # FIXME
|
||||||
|
"socket",
|
||||||
|
"status",
|
||||||
|
"voice_assistant",
|
||||||
|
"wake_on_lan",
|
||||||
|
"web_server",
|
||||||
|
"web_server_base",
|
||||||
"wifi_info",
|
"wifi_info",
|
||||||
"wifi_signal",
|
"wifi_signal",
|
||||||
"bedjet",
|
"wireguard",
|
||||||
]
|
]
|
||||||
build_all_include(exclude_components)
|
build_all_include(exclude_components)
|
||||||
files.insert(0, temp_header_file)
|
files.insert(0, temp_header_file)
|
||||||
|
|
Loading…
Add table
Reference in a new issue