1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-04 12:22:20 +01:00

remove old keys

This commit is contained in:
Tomasz Duda
2024-02-15 23:34:02 +01:00
parent c22975fffe
commit 752b7a2b36
2 changed files with 5 additions and 8 deletions

View File

@@ -21,14 +21,16 @@ from esphome.components.zephyr import (
zephyr_set_core_data, zephyr_set_core_data,
zephyr_to_code, zephyr_to_code,
) )
from .boards_zephyr import BOARDS_ZEPHYR from esphome.components.zephyr.const import (
from .const import (
ZEPHYR_VARIANT_GENERIC, ZEPHYR_VARIANT_GENERIC,
ZEPHYR_VARIANT_NRF_SDK, ZEPHYR_VARIANT_NRF_SDK,
KEY_ZEPHYR,
)
from .boards_zephyr import BOARDS_ZEPHYR
from .const import (
KEY_BOOTLOADER, KEY_BOOTLOADER,
BOOTLOADER_MCUBOOT, BOOTLOADER_MCUBOOT,
BOOTLOADER_ADAFRUIT, BOOTLOADER_ADAFRUIT,
KEY_ZEPHYR,
) )
# force import gpio to register pin schema # force import gpio to register pin schema

View File

@@ -1,8 +1,3 @@
KEY_ZEPHYR = "zephyr"
KEY_PRJ_CONF = "prj_conf"
KEY_OVERLAY = "overlay"
KEY_BOOTLOADER = "bootloader" KEY_BOOTLOADER = "bootloader"
ZEPHYR_VARIANT_GENERIC = "generic"
ZEPHYR_VARIANT_NRF_SDK = "nrf-sdk"
BOOTLOADER_MCUBOOT = "mcuboot" BOOTLOADER_MCUBOOT = "mcuboot"
BOOTLOADER_ADAFRUIT = "adafruit" BOOTLOADER_ADAFRUIT = "adafruit"