Skip to content

Commit

Permalink
Allow alternate name for sdkconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
freedib committed Jan 7, 2025
1 parent 65e0817 commit 1ad34f3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions builder/frameworks/esp8266-rtos-sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@
"build.rtos-sdk.sdkconfig_path",
os.path.join(PROJECT_DIR, "sdkconfig.%s" % env.subst("$PIOENV")),
)
if not os.path.isfile(SDKCONFIG_PATH):
SDKCONFIG_PATH = os.path.join(PROJECT_DIR, "sdkconfig")

# replace paths for windows
SDKCONFIG_PATH = SDKCONFIG_PATH.replace("\\","/")
Expand Down Expand Up @@ -998,7 +996,8 @@ def _get_installed_pip_packages():
# https://github.com/platformio/platform-espressif32/issues/635
"cryptography": ">=2.1.4,<35.0.0",
"future": ">=0.15.2",
"pyparsing": ">=2.0.3,<2.4.0"
"pyparsing": ">=2.0.3,<2.4.0",
"setuptools": ">0"
}

installed_packages = _get_installed_pip_packages()
Expand Down

0 comments on commit 1ad34f3

Please sign in to comment.