This commit is contained in:
Tomasz Duda 2024-10-16 22:11:26 +02:00
parent a0d7f03dc4
commit 8b58df23b6
2 changed files with 3 additions and 2 deletions

View file

@ -178,7 +178,7 @@ LoggerMessageTrigger = logger_ns.class_(
automation.Trigger.template(cg.int_, cg.const_char_ptr, cg.const_char_ptr),
)
PLATFORM_NRF52 = 'nrf52'
PLATFORM_NRF52 = "nrf52"
CONF_ESP8266_STORE_LOG_STRINGS_IN_FLASH = "esp8266_store_log_strings_in_flash"
CONFIG_SCHEMA = cv.All(
cv.Schema(

View file

@ -25,7 +25,8 @@ from .gpio import nrf52_pin_to_code # noqa
CODEOWNERS = ["@tomaszduda23"]
AUTO_LOAD = ["zephyr"]
PLATFORM_NRF52 = 'nrf52'
PLATFORM_NRF52 = "nrf52"
def set_core_data(config):
zephyr_set_core_data(config)