1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-21 11:13:46 +01:00

[core] Add ESP32 ROM functions to reserved ids (#11293)

This commit is contained in:
Jonathan Swoboda
2025-10-16 11:28:52 -04:00
committed by GitHub
parent c38c2a1daf
commit 364e5ffd79

View File

@@ -244,6 +244,20 @@ RESERVED_IDS = [
"uart0",
"uart1",
"uart2",
# ESP32 ROM functions
"crc16_be",
"crc16_le",
"crc32_be",
"crc32_le",
"crc8_be",
"crc8_le",
"dbg_state",
"debug_timer",
"one_bits",
"recv_packet",
"send_packet",
"check_pos",
"software_reset",
]