Skip to content

Commit 46e0f5a

Browse files
committed
wrong function name
1 parent 5cbc402 commit 46e0f5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

platform.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646

4747
# Import penv_setup functionality
4848
try:
49-
from .builder.penv_setup import setup_penv_simple, get_executable_path
49+
from .builder.penv_setup import setup_penv_minimal, get_executable_path
5050
except ImportError:
5151
# Fallback for standalone execution
5252
sys.path.insert(0, str(Path(__file__).parent / "builder"))
53-
from penv_setup import setup_penv_simple, get_executable_path
53+
from penv_setup import setup_penv_minimal, get_executable_path
5454

5555

5656
# Constants
@@ -763,8 +763,8 @@ def configure_default_packages(self, variables: Dict, targets: List[str]) -> Any
763763
config = ProjectConfig.get_instance()
764764
core_dir = config.get("platformio", "core_dir")
765765

766-
# Setup penv using simple function (no SCons dependencies, esptool from tl-install)
767-
penv_python, esptool_path = setup_penv_simple(self, core_dir)
766+
# Setup penv using minimal function (no SCons dependencies, esptool from tl-install)
767+
penv_python, esptool_path = setup_penv_minimal(self, core_dir, install_esptool=True)
768768

769769
# Store both for later use
770770
self._penv_python = penv_python

0 commit comments

Comments
 (0)